1. How do I make the entire content container (area below header) transparent?
2. Only the title_container area transparent?
I tried changing background-color of .stretch_full.title_container and .title_container but that didn't do it.
1. How do I make the entire content container (area below header) transparent?
2. Only the title_container area transparent?
I tried changing background-color of .stretch_full.title_container and .title_container but that didn't do it.
Partial answer... #1 is, #main .container { background: transparent; }
But how do I make only the title_container area transparent?
2) It's not possible to make the title container transparent without removing the background color from the #main .container element. So if you want to remove the background color from both elements use following code:
.title_container, #main .container{
background: transparent;
}
The reason why it doesn't work is that the .title_container element overlaps the #main .container element and the end result of a transparent bg color would be that the users just sees the color of the #main .container element (which is eg white by default).
You must log in to post.