Make blog background back and text white it ethos

how can I make blog background back and text white it ethos

I did it with CSS Pro but I would like to know how to achieve a black background with custom CSS :grinning:

Hi there,

Please try this code:

.blog .x-container.main:before {
    background-color: #000;
}

body.blog {
    background: #000;
    color: #fff;
}

.blog a {
    color: #fff !important;
}

Here are some related links for further reading:

Hope this helps.

Thanks heaps :grinning:

Youโ€™re welcome.

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