Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

stylesheet.css


irishcavan

Recommended Posts

I looked at your stylesheet and your codes are wrong. // will not work to hide things

 

One example

 

TD.infoBoxHeading { //info Box Bars

font-family: AvantGarde Bk Bt;

font-size: 10px;

font-weight: bold;

background: #009900; //bbc3d3

color: #CCFFCC; //FFFFFF

}

 

Needs to be

TD.infoBoxHeading { /*info Box Bars*/

font-family: AvantGarde Bk Bt;

font-size: 10px;

font-weight: bold;

background: #bbc3d3;

color: #FFFFFF;

}

 

assuming that is the background color you wanted

The extra stuff is breaking the style sheet codes on the particular lines where you have //

You can leave yourself notes inbetween /* and */

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Link to comment
Share on other sites

// works for hiding things in PHP code

 

/* and */ for css and <!-- your comment --> for html

 

:) Easy to get em all confused

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...