View Single Post
  #8  
Old 02-27-2009, 05:36 AM
 
ChristineP ChristineP is offline
 

eXpert
  
Join Date: Jul 2008
Posts: 310
 

Default Re: Need to change text color in IE6

From the View source I see there are three defined styles you should check in your .css to possibly add the IE hack. Find which style(s) are defining the color for these:
property-value
product_code
product_weight

add your hack as needed to each of the above that have the defined color of white
* html .property-value {
color: #ffffff;
}
* html .product_code {
color: #ffffff;
}
* html .product_weight {
color: #ffffff;
}

Hope this does the trick.

Christine

Quote:
Originally Posted by rageon75
Thank you ChristineP. It worked! The item number and weight now show up but the actual numbers are still black and not white? What should I change? Thank you so much again.
__________________
______________
version 4.1.9 Gold
Reply With Quote