I would like to make semi-transparent content boxes for my websites pages. My url is: http://southcarolinatitleinsurance.com/south-carolina-buyers
Asked
Active
Viewed 24 times
1 Answers
1
.entry-content{
background-color: rgba(0,0,0,0.2);
}
rgba
is red-green-blue & alpha channel.

AVAVT
- 7,058
- 2
- 21
- 44
-
1You also want to set a "backup" property like this `.entry-content{background-color:#000; background-color: rgba(0,0,0,0.2); }` – www139 Dec 06 '15 at 17:08