Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

"dirty" text for captions in IE
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: "dirty" text for captions in IE
#14483
"dirty" text for captions in IE 13 Years, 2 Months ago Karma: 0
I added a CSS Style for the caption as follows:

Code:


.nivo-caption {
position:absolute;
left:250px;
bottom:0px;
<!--[if IE8]>
         background-color:white;
background:none;
![endif]-->
background:none;
color:#fff;



and set the Opacity to 1 in order to get a white text with no background for the caption. It works fine in all browser including IE for dark background colors, however if the background color of the picture behind is light (like yellow or orange) the white text gets "dirty" and looks very very strange...

Any idea how I can fix this?

Link to the Site click here...

Thanks a million for the help...
The administrator has disabled public write access.
 
#14489
Re:"dirty" text for captions in IE 13 Years, 1 Month ago Karma: 748
Hello,

This is IE 6 - 7 bug with opacity and ClearType font smoothing. Add the next CSS rule that fix it:

Code:


DIV.nivo-caption,
DIV.nivo-caption P {
filter: 0 !important;
}



BTW, you can remove the next code from your CSS rule:

Code:


<!--[if IE8]>
         background-color:white;
background:none;
![endif]-->



It doesn't make sense because IE conditional comments doesn't work inside CSS rule.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#14578
Re:"dirty" text for captions in IE 13 Years, 1 Month ago Karma: 0
Superb, that fixed it, thank you very much...
The administrator has disabled public write access.
 
Go to topPage: 1