inherit
227238
0
Jan 21, 2016 10:09:47 GMT -8
ecksacutioner
1
December 2015
ecksacutioner
|
Post by ecksacutioner on Dec 4, 2015 11:55:59 GMT -8
I'm new to CSS and I've found this code on line 139, which I've edited the end of to include opacity:
#wrapper { width: @wrapper_width; margin: 0 auto; overflow-x: hidden; opacity: 0.5;}
The problem is, this takes everything on the forum (text, links, banners, etc.) and applies that opacity level. I only want the container background color to be opaque. What is the best way to handle this? Thanks!
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Dec 4, 2015 21:21:43 GMT -8
Try pasting this at the bottom of your StyleSheet.
.container > .content { background-color: rgba(0,0,0,0.1); }
|
|