Is there a way to change the shopping cart text color? Not the sidebox, but the actual shopping cart checkout screen.
If there isn't a way, is there a way to change the background where the products are listed?
Thanks
Is there a way to change the shopping cart text color? Not the sidebox, but the actual shopping cart checkout screen.
If there isn't a way, is there a way to change the background where the products are listed?
Thanks
A link to your site would help tons. We would then be able to look at your css and point you in the right direction.
Tina
My apologies,
http://www.criticalwire.com/prp/products
find this in your stylesheet:
and try adding a line for the text color.cartProductDisplay, .cartUnitDisplay, .cartTotalDisplay, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, #cartInstructionsDisplay, .cartTotalsDisplay (line 396)
{
padding-top: 0.5em;
padding-right: 0em;
padding-bottom: 0.5em;
padding-left: 0em;
}
More codes to play with:
I'm no expert, but this is where I would start. Make sure you edit a COPY of the css so if this doesn't work for you, your original css is available to go back to..tableHeading, #cartSubTotal (line 380)
{
background-color: #e9e9e9; <----change background color here
}
#cartSubTotal (line 384)
{
border-top-width: 1px;
border-top-style: solid;
border-top-color: #cccccc;
font-weight: bold;
text-align: right;
line-height: 2.2em;
padding-right: 2.5em;
}
It may help you to get Firefox and the web developers tool so you can edit the css and see what happens BEFORE you start messing with codes on your live site.
Hope this helps you.
Tina
Thanks, But neither one of those worked. I have already tried those in the past with no luck and just tried again now. And I do have the web developer plugin, but couldn't seem to find out what css attribute it was.
The background-color one just changes the bottom bar (Where the sub total goes), and the other one doesn't change any of the colors =/
Found the color,
For future reference you can find it here:
Code:.rowEven { background-color: #F0F0F0; } .rowOdd { background-color: #E8E8E8;
Last edited by bswinnerton; 26 Jul 2008 at 11:45 PM.