Hi, I want to make post excerpts that show in the blog page under each post image and post title to take less then the full width of the page (let’s say 60%) and also to make the text bigger – http://screencast.com/t/G1IiwiYI
Also to move the Read More button to the middle (center aligned).
How can I do this?
Thanks.
Hi DROR!
Please try the following CSS:
.entry-content {
max-width: 80% !important;
font-size: 22px !important;
}
Best regards,
Rikard
That did the job but it also made the single post content to be 80% and I only want the blog excerpt that shows on the blog page to take 80% and the single posts to be 100% width.
Hey!
Please use following code instead
.page-id-15 .entry-content {
max-width: 80% !important;
font-size: 22px !important;
}
Cheers!
Yigit
Great. Thanks.