Jump to content
Sign in to follow this  
coachkriswatkins

Content Opacity

Recommended Posts

coachkriswatkins

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
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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×