Can someone please help me with what I would need to place in CSS to have the text of a page justified.
Thanks in advance.
The blog I need help with is billymoses.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Can someone please help me with what I would need to place in CSS to have the text of a page justified.
Thanks in advance.
The blog I need help with is billymoses.com.
The following will justify all page and post text.
.entry p {
text-align: justify;
}
You will notice that there is then not enough whitespace between the right and left edges of the text and the sidebar and left edge of the white area. If you would like to give a little more white space, add the following also. You can adjust the 10px values as desired.
.entry {
padding-left: 10px;
padding-right: 10px;
}
You're amazing. Thank you so much.
You are welcome and thanks.
This topic has been closed to new replies.