Opacity on Background post, page and sidebar.

Posted in: Newsmag
Post count: 13

Hi, I am currently working under the demo: http://demo.tagdiv.com/newsmag_travel/
I like the beach background, but I need to eliminate the transparency:

1) In post.
I already tried
.post, .td-main-content-wrap{
background-color: rgba(255, 255, 255, 0.75)!important;
}

What happenned? That the content of the post what whiter but the sidebar mas more transparent. Meaning this css did not modify the sidebar transparency on the background.

2) In the page.
Main page, what is the CSS to make all the center or main content white, be completely white? I read somewhere in the forum about this code, which I tried and did NOT work:
.td-container {
background-color: rgba(255,255,255,.75);
}

3) The footer.
I would also be eeding the code to set it to completely black, I need to get rid of the transparency,

So the question is.. what css do I need to make all this happen?
Thaks agani! 🙂

Post count: 6535

Hi

1,2. To remove the transparency from post/page content use this css: http://screencast.com/t/rMplUHaPEtM

.td-container {
background-color: rgba(255,255,255,1)!important;
}

3. Try this css to make the footer background color black: http://screencast.com/t/2Fwdc2G4O

.td-footer-container, .td-sub-footer-container {
background-color: rgba(0,0,0,.8)!important;
}

Let me know how it goes.
Thanks!

Post count: 13

works great! Thanks so much! :*

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newsmag’ is closed to new topics and replies.