Quick way to have black text on white page

http://demo.theme.co/auto/

I love this demo.
Id like to have black writing on white page on parts of it. I think its easier to read.
Is there a quick way to do this?

Thanks.

Hi @rooon

For sure you can change the color of the text on any part of your web page, could you please share a screenshot or a specific URL from your website showing where exactly is this text on your page so we can help you further?

Thanks.

Sure I have it under constructions but baically see the images attached.

Hi There @rooon

If you just want to change the blog page, you can add the following CSS rules into your X -> Theme Options -> CSS area.

.blog .site::before {
    background-color: white;
}
.blog .h-landmark {
    color: #000000;
}
.blog .entry-wrap {
    background-color: #fff;
}
.blog .entry-title a {
    color: #000000;
}
.blog .p-meta, .blog .p-meta a {
    color: #000000;
}
.blog .p-meta a {
    color: red;
}
.blog p {
    color: #000000;
}
.blog .more-link {
    color: #000000;
}
.blog .h-widget {
    color: black;
}
.blog .widget ul, .blog .widget ol {
    background-color: #fff;
}
.blog .widget ul li a, .blog .widget ol li a, .blog .x-comment-time {
    color: black;
}

Hope that helps.

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