Change Color of Body Text

Hi! I am trying to change the color of the body text on my website. The website is www.sokolauditorium.com. I am trying to change the grey color of the main body of any post or page through the CSS editor, but have been unsuccessful. I was able to change the color for text that are the h2 heading, but any other class I use in the custom CSS doesn’t work. Any help would be appreciated. Thanks!

Hi @brandon,

Use this css code and put what colour you want:

#latest-news {
       background-color: #f6f6f6;
    }

Thanks,

Cristian

Ok, but what about static pages? I’ve already tried using the id tags “blog-post-entry” and “markup-format” to change the text color on any of my pages, but they don’t seem to have any effect. Take for instance the about page:

http://sokolauditorium.com/about/

No matter what id tag I use, I can’t seem to change the text color on this page or any page. The only way I can is by changing the text to a header format. The bigger text is in an <h2> format, so I was able to get that to change color. But nothing in paragraph format will change color at all.

Thanks!

Hi,

Use this css :

body.custom-background {
    background-color: #0a0068;
}

#blog .blog-post .blog-post-entry p {
    line-height: 1.6;
    color: #ede9e9;
}

Thanks,

Cristian

Yep, that worked. Thanks!

Hi @brandon,

You’re welcome.

Thanks,

Cristian