OK, I've figured out it has something to do with the following CSS code:
Code:
.contentslide .opacitylayer{ /*Do not edit this rule unless you're familiar with CSS opacity behavior*/
width: 100%;
height: 100%;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
In particularly, the bolded parts. When I remove them, the text is not blurry. I now want to make another CSS property to override that property for the text only, but don't know enough about those properties to do that. Any ideas?
I'm thinking something like this but the properties I've listed don't do the job.
Code:
.contentslide .opacitylayer h1,h2,h3,h4{
filter:none;
opacity: 1;
}
Bookmarks