Hi there,
I’d like to create opacity for the main page container so that the back ground image is visible behind the main page text, I’ve tried various settings but I can’t seem to isolate the correct area to add the opacity setting to. Your help would be appreciated.
Silvio
Try this:
.main-color {background-color: rgba(255,255,255,0.4);}
You may have to use this in several wrappers. Don’t use opacity:somewhat, because it affects everything within.
Thanks but I tried this too and it didn’t work :(
Tried this and it worked, thanks for the heads up formateins! :
.html_boxed #main {
overflow:hidden;
position:relative;
background-color: rgba(255,255,255,0.4);
z-index:2;
}
Hey Silvio,
Glad you were able to get it working :)
Regards,
Devin