I've looked at tons of posts pertaining to my problem and nobody really has the same html so I can't really figure it out.
I'm trying to make my tumblr blog's post background semi-transparent without making the photos, videos, text, etc. on the post transparent. Right now I have
#left-column .post {
opacity: 0.5;
filter: alpha(opacity=50);
z-index: -1;
background: #fff;
border: 1px solid #ccc;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
float: left;
padding-top: 20px;
width: 520px;
}
I'm sure I need to supply more code for this question. If you have any requests I'll copy/paste over to here. Also, I only know the basics to html/css so if I don't understand something right away, I'll have a question or two. Thanks.