How to modify the default theme colors (default-boo…

Hi David,

In this case you would have to do it through CSS code, add the code you want by accessing your cPanel -> Home -> File Manager -> public_html/raizdetuweb/themes/classic/assets/css/, right click on custom.css -> Edit

To apply a different background color to all web pages:

body {
background-color: white !important;
}

Apply a different background color to the home page only:

body#index{
background-color: blue !important;
}

Apply a different color to the product pages:

body#product{
background-color: blue !important;
}

Apply a different color to any product category page:

body#category{
background-color: yellow !important;
}

The colors can be defined in various notations, I suggest you review ->

Cheers

This post was modified 2 years ago by Answered: 11/11/2020 5:58 pm

See also  Loadposition on article
Loading Facebook Comments ...
Loading Disqus Comments ...