hi,
I would like to see if it’a possible to only change the body of the entry post to 18px on my blog while leaving the body font size 12px for the rest of the website.
I left my login details in the secure note for you to have a look.
Thanks
A
hi,
I would like to see if it’a possible to only change the body of the entry post to 18px on my blog while leaving the body font size 12px for the rest of the website.
I left my login details in the secure note for you to have a look.
Thanks
A
Hello Alejandro,
Thanks for writing in!
You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use. By default, the entry post uses post and entry-content classes in their respective container while the body element class on the blog is using blog, archive for the archive pages and single-post for the single blog post. Therefore, you use with the combination of these classes the following code:
.single-post .post .entry-content,
.blog .post .entry-content,
.archive .post .entry-content {
font-size: 18px;
}
This code is just and example to get your modifications started. You are the one who will maintain this code if there are any changes later one.
Note: If you are unfamiliar with code and resolving potential conflicts, you may select our One or Care service for further assistance. We are unable to provide support for customizations under our Support Policy.
Best Regards.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.