How to make post content area completely transparent?

Hi Aigars

I’m lost. I want to make the background of the post / column transparent or translucent. Am I looking in completely the wrong place?

Ref this site: http://theteatour.com

Any help would be appreciated

You can make post transparent by adding something like this to Theme Options – Other – Custom CSS or inside WordPress Child Theme style.css if you use one.

article {
	background: rgba(256,256,256,0.6);
}

First 3 values stands for RGB color code and the last one stands for opacity. You can adjust it if you like.

Probably you will want to do the same thing for .entry-meta-bar