Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Cant find where I mixed the code up text same color as background


Guest

Recommended Posts

Ok, I made changes to my Store including color changes etc. and I love the out come. However, I have made a change that I cant figure out what the heck I did!!!! If I click on one of my products it takes me to an extended list the background is black and so is the writing. ugh! You cant see the cost of the item or the description. Oops! I have been over and over the codes and I am not sure where I screwed up. I don't think it is in the TD.product listing but... It could be. Help please!!! this is the direct address to the page with the prob. http://www.oepros.com/store/catalog/index.php?cPath=25

Link to comment
Share on other sites

Ok, I made changes to my Store including color changes etc. and I love the out come. However, I have made a change that I cant figure out what the heck I did!!!! If I click on one of my products it takes me to an extended list the background is black and so is the writing. ugh! You cant see the cost of the item or the description. Oops! I have been over and over the codes and I am not sure where I screwed up. I don't think it is in the TD.product listing but... It could be. Help please!!! this is the direct address to the page with the prob. http://www.oepros.com/store/catalog/index.php?cPath=25

 

I believe those are the product listing data class in your stylesheet

The Knowledge Base is a wonderful thing.

Do you have a problem? Have you checked out Common Problems?

There are many very useful osC Contributions

Are you having trouble with a installed contribution? Have you checked out the support thread found Here

BACKUP BACKUP BACKUP!!! You did backup, right??

Link to comment
Share on other sites

Your issue is deffinately in the stylesheet.css file in the /catalog/ directory.

 

Which do you want to change or keep: the background black or the text black?

 

To change the background find these lines in the stylesheet.css:

 

TR.accountHistory-odd, TR.addressBook-odd, TR.alsoPurchased-odd, TR.payment-odd, TR.productListing-odd, TR.productReviews-odd, TR.upcomingProducts-odd, TR.shippingOptions-odd {

background: #000000;

}

 

TR.accountHistory-even, TR.addressBook-even, TR.alsoPurchased-even, TR.payment-even, TR.productListing-even, TR.productReviews-even, TR.upcomingProducts-even, TR.shippingOptions-even {

background: #000000;

}

 

Change the hexidecimal color code to the new color.

 

To change the text, in the same file find the line (just a few below those 2):

 

TD.productListing-data {

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

font-size: 10px;

}

 

Add a line under "font-size: 10px;" that says:

 

color: #FF0000;

 

I just used base red with that code and you can really change it to whatever you want.

 

Good luck.

 

Christopher

Link to comment
Share on other sites

Your issue is deffinately in the stylesheet.css file in the /catalog/ directory.

 

Which do you want to change or keep: the background black or the text black?

 

To change the background find these lines in the stylesheet.css:

 

TR.accountHistory-odd, TR.addressBook-odd, TR.alsoPurchased-odd, TR.payment-odd, TR.productListing-odd, TR.productReviews-odd, TR.upcomingProducts-odd, TR.shippingOptions-odd {

background: #000000;

}

 

TR.accountHistory-even, TR.addressBook-even, TR.alsoPurchased-even, TR.payment-even, TR.productListing-even, TR.productReviews-even, TR.upcomingProducts-even, TR.shippingOptions-even {

background: #000000;

}

 

Change the hexidecimal color code to the new color.

 

To change the text, in the same file find the line (just a few below those 2):

 

TD.productListing-data {

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

font-size: 10px;

}

 

Add a line under "font-size: 10px;" that says:

 

color: #FF0000;

 

I just used base red with that code and you can really change it to whatever you want.

 

Good luck.

 

Christopher

 

THANK YOU!!!! Oh man thank you so so so so so much!

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...