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 
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:
- Intro to CSS - https://goo.gl/mFuWQT
- How to get CSS selectors - https://goo.gl/BmoH39
- Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa
Hope this helps.
Thanks heaps 
You’re welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.