Blog Accent Color & Font Size

Hello:

I am looking to change the color of the accent color for the blog link - currently it is red. Where can I change this on wordpress?

Also, I am looking to increase the default size of my blog text. How can I do this? Here is a link to see how it currently shows.

http://www.humanityfest.org/festival-exploratory-survey/

Thank you,
Bryan

Hi Bryan,

Thanks for writing in! If you want to change link colors and font sizes globally, head over to X -> Theme Options -> Typography section.

If you just want to change blog links and font sizes on Blog and single blog posts, add the following CSS rules into your X -> Theme Options -> CSS area.

.blog .entry-content.content p {
    font-size: 16px;
}
.blog .entry-content.content ol {
    font-size: 16px;
}
.blog .entry-content.content a {
    color: green;
}
.single-post .entry-content.content p {
    font-size: 16px;
}
.single-post .entry-content.content ol {
    font-size: 16px;
}
.single-post .entry-content.content a {
    color: green;
}

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.