I'm trying to use a specific background for my thursday blog posts. Making a div class, inserting the background image, and making it opaque was easy enough. The problem I'm having is that it's difficult to read the text, because my css settings make everything opaque. Is there a way to specify that I only want the image to be opaque 40%?
.thursday {
background:url(mytileableimageaddress.jpg) repeat;
opacity:0.4;
filter:alpha(opacity=40);
color: black
}
I also did "color: #000000", not that it made a difference. I have to give a tremendous thank you to the Yahoo! Answers community for helping me out.
P.S. If it matters I now blog with blogger/blogspot.
.thursday {
background:url(mytileableimageaddress.jpg) repeat;
opacity:0.4;
filter:alpha(opacity=40);
color: black
}
I also did "color: #000000", not that it made a difference. I have to give a tremendous thank you to the Yahoo! Answers community for helping me out.
P.S. If it matters I now blog with blogger/blogspot.