Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Please help Me with my CSS!!


Guest

Recommended Posts

Located below is the example of my current css file for my site. I am trying to change the attributes of the boxes taht currently are bluish by default and read Conttents, Manufactures, What's new ect... Can someone please help me or give me the right code to chage these to an orange color like #ff9933? Thanks for your help in advance!

 

A { color:#000000; text-decoration:none; }

.whitelink { color:#FFFFFF; text-decoration:none; }

.blacklink { color:#000000; text-decoration:none; }

.blacklinkwithrollover { color:#000000; text-decoration:none; }

.bluelink { color:#0000FF; text-decoration:none; }

A:hover { color:#AABBDD; text-decoration:underline; }

A:hover.blacklink { color:#000000; text-decoration:underline; }

A:hover.blacklinkwithrollover { color:#0000FF; background-color: #FFFF33; text-decoration:underline; }

A:hover.bluelink { color:#0000FF; background-color: #FFFF33; text-decoration:underline; }

.boxborder { border-color:#000000; border-style:solid; border-width:1; }

 

TD.infoBoxHeading {

font-family: Verdana, Arial, sans-serif;

font-size: 10px;

background: #fab174;

color: #ffffff;

font-weight : bold;

}

Link to comment
Share on other sites

This controls the border color around the boxes:

.infoBox {
 background: #ff9933;
}

This controls the color and font of the box header:

TD.infoBoxHeading {
 font-family: Verdana, Arial, sans-serif;
 font-size: 10px;
 font-weight: bold;
 background: #ff9933;
 color: #ffffff;
}

This controls the color and font of the box contents:

.infoBoxContents {
 background: #f8f8f9;
 font-family: Verdana, Arial, sans-serif;
 font-size: 10px;
}

 

http://www.oscommerce.info/kb/osCommerce/C...n_and_Layout/54

I'd rather be flying!

Link to comment
Share on other sites

Thanks blue pony for the info but this didn't work either, i chaged the attributes exactly as you have them but the boxes are blue still. i have two stylesheets for some reason and I changed both files but to no changes. I made sure to expunge the cache in internet explorer. Any further advice?

Link to comment
Share on other sites

The only stylesheet you should have for the catalog is the one in the root catalog folder. There is one in admin/includes as well, but that is not used on the catalog side.

 

What tool are you using to change the file? It is best to change the file on your local machine using a text editor and then upload it to your server using a FTP client, rather than trying to change it directly on the server.

I'd rather be flying!

Link to comment
Share on other sites

Hey Henry Thanks for the info and I am going to try updating my version of the oscommerce app because the one I am using through starlogic is old but have you ever installed this before on startlogic?

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...