Anybody have a handy cleartype fix for the nivo slider?
I couldn’t find anything via search.
- Microlancer Beta Tester
- Author had a Free File of the Month
- Has been a member for 3-4 years
- Item was Featured
- Author was Featured
- Austria
- Exclusive Author
- Referred between 200 and 499 users
What do you mean exactly? The choppy look on IE’s ?
This occurs because of the opacity property (filter on IE).
Applying a background attribute should fix it
Yeah,
IE’s poor rending of fading and fonts. It’s a known IE jquery bug but I couldn’t find anything regarding fixing it with nivo.
I spent a couple hours of playing with the code to get nivo to include post titles, excerpts and all of that fun stuff like a proper slider should but the text rending makes it unusable.
jquery isn’t something I’m very familiar with.
Where should I apply the background attribute?
- Microlancer Beta Tester
- Author had a Free File of the Month
- Has been a member for 3-4 years
- Item was Featured
- Author was Featured
- Austria
- Exclusive Author
- Referred between 200 and 499 users
I think it’s the caption
.nivo-caption, .nivo-caption p{
background:#000 !important;
}
But you will lose the opacity…
I ran in to this problem also and found that a background color on the .nivo-caption solves it… BUT that really sucks. Would love it if anyone had a better option.
mlando said
I ran in to this problem also and found that a background color on the .nivo-caption solves it… BUT that really sucks. Would love it if anyone had a better option.
I’m not sure about the Nivo issue, but I do know that adding
background-color: transparent;
has helped with some text rendering issues I have had with IE. That way, you wouldn’t be stuck with a solid color, etc.
background-color: transparent;
has helped with some text rendering issues I have had with IE. That way, you wouldn’t be stuck with a solid color, etc.
thanks, tried that… didn’t work too well for me… still a bit jaggy in IE
- Microlancer Beta Tester
- Author had a Free File of the Month
- Has been a member for 3-4 years
- Item was Featured
- Author was Featured
- Austria
- Exclusive Author
- Referred between 200 and 499 users
There is actually no good workaround for this:
- don’t use opacity
- use a background
- remove the filter attribute (causes no opacity in IE)
$('#box').animate(
{opacity:1},
function() {
$(this).css('filter','');
}
);
I didn’t tried a transparent background image (png) maybe that works
