Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Stylesheets not working in IE/Firefox (but work in Chrome?)


65degreesmusiccafe

Recommended Posts

Posted

Saying that your style sheet doesn't work is somewhat vague. What, specifically, is not working?

Check out Chad's News.

Posted

Sorry, I mean that my CSS Stylesheet is not loading/being applied to my Oscommerce site in IE or Firefox.

I'm still not clear on this, because the page looks the same for me in both Firefox and Chrome. And the FireBug extension tells me your style sheet is loading okay in Firefox. So how do you know the style sheet isn't being loaded/applied?

Check out Chad's News.

Posted

I'm still not clear on this, because the page looks the same for me in both Firefox and Chrome. And the FireBug extension tells me your style sheet is loading okay in Firefox. So how do you know the style sheet isn't being loaded/applied?

 

Really? Hmm. The most obvious indicator was that the font-type is loading as a rather-large Times New Roman when it should be Verdana (specifically in the 'main' middle frame - the sidebars seem to be styled okay).

Posted

It does look like Times New Roman on IE8. After reviewing your stylesheet.css, there are some nit-picky errors in your CSS file:

 

BODY

background-image : url(http://www.65degrees.com.au/images/65degrees-background.jpg);

should be

background-image : url('http://www.65degrees.com.au/images/65degrees-background.jpg');

 

A.headerNavigation

<!-- Sets the text link colors for the breadcrumb navigation path links (Top Catalog etc.) -->

should be

/* Sets the text link colors for the breadcrumb navigation path links (Top Catalog etc.) */

 

TD.FOOTER

  font-size: 10px;;

should be

  font-size: 10px;

 

And repeated errors:

 

<!-- Sets the background border color around all the boxes and not the box headings except the "my account", "edit account", and "add a new address" boxes. 

-->

<!-- Sets the color of ALL the inside of the boxes and puts a colored border around the comments boxes. -->

<!-- Sets the left and right column boxes and the new products box heading color and text color. -->

<!-- The color of the background of the product listing heading that has "product name", "price", etc. The text style and color can also be set. -->

<!-- The style used for page headings. Color on the checkout_success.php page that says "Your Order Has Been Processed!" and also on all the product heading 

pages as What's New 

Here? Enjoy Your Shopping! Text on all the product pages. -->

should be

/* Sets the background border color around all the boxes and not the box headings except the "my account", "edit account", and "add a new address" boxes. 

*/

/* Sets the color of ALL the inside of the boxes and puts a colored border around the comments boxes. */

/* Sets the left and right column boxes and the new products box heading color and text color. */

/* The color of the background of the product listing heading that has "product name", "price", etc. The text style and color can also be set. */

/* The style used for page headings. Color on the checkout_success.php page that says "Your Order Has Been Processed!" and also on all the product heading 

pages as What's New 

Here? Enjoy Your Shopping! Text on all the product pages. */

 

You're commenting out like HTML when you should comment out like CSS. Fix those and recheck.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...