Where is the option to justify the text in?
Hey sambo258,
There’s no justify text in the toolbar in wordpress, however you can still just it by highlighting the text and pressing shift + alt + j. Hope this helps :)
Best regards,
Nikko
Hi,
I don’t believe the text editor has an option for justify, it only has left, centre and right.
You could add some inline css to make text justified as below
<p style="text-align:justify;">I'm some text</p>
You would have to reproduce that bit of code on every block of text.
You could add some code to the custom css to target a class as below
.justify-me{text-align:justify;}
You would then add that class to each text element.
More on text-align can be found here
Hope that helps
TJ
Hi tjswarbs78 ,
Try what I suggested above if you are using Text Block or wordpress content editor, that should work. Have tested it on my end and I can assure you it works fine :)
Best regards,
Nikko
Thanks they all worked