How do I change the text alignment to be justified across the whole page, rather than left-aligned?
Hey Mark,
Could you post a link to where we can see the content in question please? Also please try to specify what you would like to be justified a bit further.
Best regards,
Rikard
I am looking to be able to “justify” align the text instead of aligning it to the left.
Hi,
If you would like to justify all paragraphs, please add following code to Quick CSS
#top p {
text-align: justify;
}
If you would like to justify certain elements, please edit those elements and give them custom CSS class (“justified” in example below) in Advanced > Developer Settings tab and then use the code as following
.justified p {
text-align: justify;
}
Best regards,
Yigit
Thank you.
In the Developer settings, do I add “justified” to the Customer ID and the code to Custom CSS?
Hi,
No, you add “justified” to Custom CSS class field, please see – https://imgur.com/a/ZlmyEPn and custom CSS code goes into Enfold theme options > General Styling > Quick CSS field
.justified p {
text-align: justify;
}
:)
Best regards,
Yigit