Display problems when using Elementor + Icon 3 Demo

Hi,

Thank you so much, that worked.
However, it only shows the prices when you hover over the product and it doesn´t show the offers, as many of my products have a discount over the original price.
Is there a way to put all this information staticly below the product image?
And where can I change the color of the add to cart button?

Thanks a lot,
Carlos

Hi There,

To display the sale price, please add this custom CSS:

.woocommerce li.product .entry-header .price>del {
    display: inline-block;
}

To change the add to cart button’s color, please add this:

.woocommerce li.product .entry-header .button {
    background-color: #ff7ee2
}

Hope it helps :slight_smile:

Hi,

I asked if it was possible to put the product title and prices in a static mode below the image, as it was before. I didn´t change it so I don´t know why it doesn´t look like that now.

Thanks,
Carlos

Hi again,

Sorry for the confusion, to show the info statically below the image and to change the background color of your add to cart button, just add the following code in the Theme Options > CSS:

.woocommerce li.product .entry-header .button {
    background-color: #6d5372 !important;
}

.woocommerce li.product .entry-wrap {
    position: relative !important;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

1 Like

Hi @Nabeel,

That worked perfectly, thank you so much!

Have a good day,
Carlos

You’re welcome! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.