Hi,
Now I have DW focus theme and need your assistance for the below 2 settings,
1), I have removed the post right side social buttons, and tags as per code from this forum..now I want to utilize the right side space in FULL WIDTH to use more content,
pls suggest how to do that?
2), I need to change the font and colour of individual posts from balck to blue colour..where I need to do and how to do that…pls suggest me the code or configuration… also the font changes in the content.
1 Answers
Hi Yas,
To resolve your issues, please go to Dashboard / Appearance / Customize / General Settings, add the following code to Header Code section:
<style>
/* full width content*/
.single .site-content>.hentry .entry-content {
float: none;max-width: 100%;
}
/* font & color in post content */
.single .site-content>.hentry .entry-content,
.single .site-content>.hentry .entry-meta,
.single .entry-title {
color: blue;
font-family: Arial;
}
</style>
Hope that helps!
Please login or Register to submit your answer