You are here:  » colours

Support Forum



colours

Submitted by rolli1 on Fri, 2012-02-24 12:26 in

Hi David,
I do not find the file, where I can change the colors of:

Stockist Catalogue Product Name Price

The price is displayed in white and I should have another colour. Also the text bilonging to "Catalogue Product Name" should be in a different colour.

You can review what I mean under

{link saved}

How to change colours?

Regards

Roland

Submitted by support on Fri, 2012-02-24 12:41

Hi Roland,

The colours used on the price comparison table in your example link are defined in the HTML template html/prices.php. What you could do is override it all in your default.css file by specifying background-color and color for the header and item cells by adding the following:

.prices th {
  background-color: #eeeeee;
  color: #000000;
}
.prices td {
  background-color: #ffffcc;
  color: #000000;
}

The reason I'm suggesting the above is because it looks like other styles in your template CSS are affecting the table colours so it will need to be overridden using CSS. Simply use whatever HTML colour codes you want for the background-color: and color: (text) in the above.

After modifying CSS, don't forget to do a hard refresh (CTRL+F5) to ensure that all resources are reloaded by your browser...

Hope this helps!

Cheers,
David.
--
PriceTapestry.com

Submitted by rolli1 on Fri, 2012-02-24 12:52

That is exactly what I wanted.
Thanks a lot.

Roland