This question has been flagged
2 Replies
5486 Views

Hello everyone,


I am working on my e-commerce site and I have found some limitations in the customization of certain items. More precisely I have enabled and created e-commerce categories, but in the Shop page of the website the category list has a font color that I wish to change since is too "light". Is there a way to do so?

Avatar
Discard
Best Answer

Hi,
Go to the website and under the customize menu select the option HTML/CSS/JS Editor.

Next, Select SCSS(CSS) from the drop down and give the necessary color to the element shown in the below Screenshot. 


This will change the color of the categories.

Hope it helps

Avatar
Discard
Best Answer

I had the same issue. 

find the view "website_sale.products_item"

The h6 section is the product title. I deleted text-primary class and now the titles are showing the default link color. Add a class if you wish


< h6 class="o_wsale_products_item_title mb-2">
< a class="text-primary text-decoration-none" itemprop="name" t-att-href="product_href" t-att-content="product.name" t-field="product.name"/>
< a t-if="not product.website_published" role="button" t-att-href="product_href" class="btn btn-sm btn-danger" title="This product is unpublished.">
Unpublished
< /a>
< /h6>

Avatar
Discard