-3

I would like to make semi-transparent content boxes for my websites pages. My url is: http://southcarolinatitleinsurance.com/south-carolina-buyers

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356

1 Answers1

1
.entry-content{
    background-color: rgba(0,0,0,0.2);
}

rgba is red-green-blue & alpha channel.

AVAVT
  • 7,058
  • 2
  • 21
  • 44
  • 1
    You 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