
09-03-2013, 08:26 AM
|
 |
Ecwid Team
|
|
Join Date: Jan 2013
Posts: 2,517
|
|
Quote:
Originally Posted by Devin Didier
I am trying to change the color of the font in the payment checkout page. The font is white and is almost invisible. I am not sure what part of my code would change this font color. Also, I am trying to change the font color on the item descriptions when in list view. They are a dark grey color and when I have changed my background to the background of my website they are unable to be read clearly.
My site is in development however here is the link http://preview.editmysite.com/LHFO52
Any help would be appreciated.
Thank you.
|
Hello,
Quote:
I am trying to change the color of the font in the payment checkout page. The font is white and is almost invisible. I am not sure what part of my code would change this font color.
|
Please, provide a screenshot of what exactly you want to change on the payment details page.
Quote:
Also, I am trying to change the font color on the item descriptions when in list view. They are a dark grey color and when I have changed my background to the background of my website they are unable to be read clearly.
|
In order to change the font color of the description in the list view you should add the following code to your custom CSS theme:
Code:
div.ecwid-productBrowser-productsList-descr {
color: #FFFFFF;
}
Feel free to change #FFFFFF to any color value.
|