coachkriswatkins 0 Report post Posted June 1, 2012 How do I make the content boxes transparent where you can see some of the background. I believe the term for this is opacity? Share this post Link to post Share on other sites
Danny+ 1,327 Report post Posted June 1, 2012 Hi, To do this you wont want to use opacity, as it will effect all child elements too. Therefore, you the code below as a base, this will give you background a transparent look with the color being slightly red. [code]#site .content, #footer .content { background: rgba(200, 54, 54, 0.5); }[/code] You will need to alter the colors slightly to get the color you desire. Also I recommend you read this post, it should assist you. http://css-tricks.com/rgba-browser-support/ Please search our forums, before posting! Share this post Link to post Share on other sites