Font color

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 years ago
Hello,

My HTML & CSS is limited - how do I change the title font color for a Product?

Thanks!
Dave
5 years ago
Hello Dave,

I hope you know the basics and know that if you want to change the colors, that you need to modify CSS file. If you are using Default Clean theme you need to do following steps:

Open the FTP server where you have your nopCommerce site, go to Themes -> Default Clean -> Content -> css, and open the styles.css file.

Go to line 1773 and find the .overview .product-name h1 selectors.

In default theme you will have only specified font-size and font-weight for that element. What you need to do? Just add the new property - color.

Below you can find how it should look:


.overview .product-name h1 {
    font-size: 30px;
    font-weight: normal;
    color: #444444;
}


This code will change the color of product name to grey. Save changes and refresh your browser. That's all.

Best,
Patryk
5 years ago
Got it - Thanks!!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.