#container more opaque
-
How would I write a CSS code to make the #container more opaque?
The blog I need help with is: (visible only to logged in users)
-
I expect you are talking about this site, http://gatorwesleyfoundation.wordpress.com/ , correct?
To make the content area background more opaque, add the following and adjust the last number, the 0.8, which is the opacity. The closer to 1, the more opaque.
div#container { background-color: rgba(255, 255, 255, 0.8); }
- The topic ‘#container more opaque’ is closed to new replies.