css - Cycle testimony transparent background in IE not working -
css - Cycle testimony transparent background in IE not working -
i'm using jquery cycle display testimonials on site , want set background transparent. having changed css background transparent in ff, safari, chrome , opera refuses transaprent in ie (specifically 8/9). i've tried manner of things including using transparent background png/gif no avail.
you can see on test site
www.roadtotheweb.co.uk
does know how create transparent? or testimony rotator utilize instead create transparency easier deal with.
thanks
the problem ie set background color #fff;
if view source in ie, see:
<blockquote style="z-index: 5; position: absolute; width: 308px; zoom: 1; display: block; background: #ffffff; height: 150px; top: 0px; left: 0px" jquery15205686771777138462="2" cycleh="150" cyclew="308"> <p>"lorem ipsum dolor sit down amet, consectetur adipisicing elit, sed eiusmod tempor incididunt ut labore et dolore magna aliqua. ut enim advertisement minim veniam. " <cite>- martin, ny</cite></p></blockquote>
the fix: add together !important css background-color rule, over-write inline rule.
#testimonials1 blockquote { background-color: transparent !important; }
or
#testimonials1 blockquote { background: transparent !important; }
css internet-explorer transparency jquery-cycle
Comments
Post a Comment