justify and center text
-
How can I justify a paragraph and center it on the page as well?
The blog I need help with is: (visible only to logged in users)
-
From the Text view wrap the paragraph with
For people looking for getting text that is both centered and justified, the following should work:
<div class="justify-center"> ... your text in here ... </div>Then add the following to your CSS Stylesheet Editor (Appearance > Edit CSS):
.justify-center { margin: 0 auto; width: 100%; text-align: justify; }Adjust the width as you need – by percent or pixels.
-
- The topic ‘justify and center text’ is closed to new replies.