CSS issue in IE
Posted: 22 May 2006 09:27 PM   [ Ignore ]
Newbie
Rank
Total Posts:  2
Joined  2006-05-22

OK ... I have a problem that was created in solving a previous problem.

I had issues getting my nav buttons to show in IE, that the hollyhack seems to have corrected, although now my CSS styles for the buttons are being applied to all other elements in the left column of my oscommerce template

firstclassinks.co.uk/shop/

The page works perfectly in Firefox, but in IE it has broken the elements below the navigation buttons.

Any and all help would be appreciated.

GG

Profile
 
 
Posted: 23 May 2006 08:15 PM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  6
Joined  2006-05-22

On the bottom links you have a class of td.boxText assigned to the links but there is no rule in your style sheet named td.boxText.

I would suggest making that class or if you want to use your page default links just simply add that class name to your body links to be sure it gets assigned.

such as

A, td.boxText {
  color: #000066;
  text-decoration: none;
}

But honestly, your css is a big mess. I think you have more rules that ive ever seen for such few elements on a page.

Profile
 
 
Posted: 23 May 2006 09:03 PM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  2
Joined  2006-05-22

The CSS is courtesy of OSCommerce, and it is not just for that one page, but for the entire OSCommerce store template would be my guess :(

Profile