Site logo

Archived topic

Footer Widget Woocommerce Product Font

8 replies · Started by Gwyneth on July 16, 2019

Viewing posts 1–9 of 9

Hello GPs
The woocommerce product footer widget is displaying product title in bold. Is there a way to have normal font weight? I don't like the look of bold. See homepage footer
And can I remove the stars in the footer widget? I tried disabling reviews and rating in woocommerce and also unticking ratings in Customise>Layout>Woocommerce but the stars are still in the footer widget.
thanks
Gwyneth

Hi there,

Try this CSS:

.footer-widgets .woocommerce ul.product_list_widget li a {
    font-weight: normal;
}
.footer-widgets .woocommerce ul.product_list_widget li .star-rating {
    display: none;
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Let me know :)

Thank you, that works, my first time of using Additional Css in the customiser!

No problem :)

And could you give me some css to put the product images in the footer widget to the left of the product title? See https://eftgathering.com

This should really be a question for WooCommerce.

You can try this CSS:

.woocommerce ul.product_list_widget li img {
    float: left;
}

ooops another footer problem the back to the top button is overlying the privacy flag. How to separate them?

This archived topic is closed to new replies.