This should be an easy one, the words "shopping cart" are making searches chaotic. Thanks in advance.
This should be an easy one, the words "shopping cart" are making searches chaotic. Thanks in advance.
Please post a link to your site so that I can see what you are referring to.
I guess I didn't explain the problem well enough. What is happening is when an item is added to the cart, the text isn't seen because the cart background field is white/pale blue and the font for the site is white. I need to know how to either change the background field color of the cart or change the font color (for the cart only). I've searched both through this forum and through the Developers Toolkit and haven't been able to find the answer. Thanks for any help.
#shoppingCartDefault { color: #000;}
that should do the trick i think ( is easier to change the font colour)
I would reccommend downloading the web dev tool for firefox.......as it allows you to see what div/classes are applied to what element and what styles are associated with them
Also dont forget to remove the following text
'You may want to add some instructions for using the shopping cart here. (defined in includes/languages/english/shopping_cart.php)'
Thanks for the reply, the code worked for the price and total, but not for the item name, it's still white. Looks like that font color is tied in w/ the item listing.
#cartContentsDisplay
.tableHeading
#scQuantityHeading
#scUpdateQuantity
#scProductsHeading
#scUnitHeading
#scTotalHeading
#scRemoveHeading
Heres a list of id's and classes that the table uses, have a play with those.
(to get them, i did a view source, as i i dnt have firefox here)
Thanks for the help, I did find the code to change the cart background color:
tr.rowEven {
background-color: #000000;
}