Home Forums WoodMart support forum Product style issue

Product style issue

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #79058

    amaury_santillan
    Participant

    Hi guys.

    1. Price is not displaying for external/affiliate products on product summary unless user hover it.

    2. Rating stars are not displaying corectly even if user hovers it.

    3. I need the featured image to display full width but its something forcing some kind of padding inside the box.

    Could you help me?

    Thanks

    Attachments:
    You must be logged in to view attached files.
    #79078

    Artem Temos
    Keymaster

    Hello,

    When we visit your shop page we don’t see any of the mentioned issues https://gyazo.com/d434d3dceb6e37b2dca104a6c47f1c8b
    How can we reproduce them?

    Regards

    #79210

    amaury_santillan
    Participant

    Obviously you have to hover the item.

    Anyway. Points 1 and 2 are already done.

    I need gelp though with the 3rd point.

    I need the image to display full width. I mean to fit on iys container without any padding.

    4. I wouild like to place an icon of mine when the add to cdart its hover. Could you please help setting this icon https://www.outlet.viajes/wp-content/uploads/2018/09/icono-avión.png instead the cart one?

    Thanks

    #79219

    Artem Temos
    Keymaster

    3. What featured image do you mean? Please, send us a screenshot.

    4. Unfortunately, it is not possible to set an image there. It is a vector icon and it changes the color on smaller screens http://prntscr.com/kz091m
    It can’t be done with your png image.

    #79220

    amaury_santillan
    Participant

    3. The product image. http://prntscr.com/kz091m

    4. Anyway. I would like to change it. I can upload a svg file. Just tell me how to replace it.

    #79226

    Artem Temos
    Keymaster

    3. You make them full width with CSS only

    .products-spacing-30 .product {
        padding-left: 0;
        padding-right: 0;
    }

    4. SVG file will not be changing the color as well.

    #79229

    amaury_santillan
    Participant

    3. Thanks that affected the entire box (section). I only need to affect the image inside that box.

    4. Yes, I understand. But I need to replace it whatever it means

    #79274

    Artem Temos
    Keymaster

    3. It is applied for the image only now. Show us on the screenshot how you want it to be.

    4.

    body .product-grid-item .product-information .fade-in-block .woodmart-buttons .woodmart-add-btn>a:before {
    	background-image: url(https://www.outlet.viajes/wp-content/uploads/2018/09/icono-avi%C3%B3n.png);
    	background-size: 18px;
    	background-repeat: no-repeat;
    	background-position: center;
    	content: "";
    }
    #79309

    amaury_santillan
    Participant
    #79318

    Artem Temos
    Keymaster

    3. Use this code

    body .woodmart-hover-base .content-product-imagin {
        top: 0;
        left: 15px;
        right: 15px;
    }

    and this for mobile devices

    body .woodmart-hover-base .content-product-imagin {
        left: 10px;
        right: 10px;
    }

    4. It seems to work now https://gyazo.com/a2bcc9535349b621c14cea4a211f0e21

    #79354

    amaury_santillan
    Participant

    3. Thank you very much. That worked just fine. DONE

    4. Almost there. Its not working as well on mobiles.

    Could ypou help me?

    #79372

    Bogdan Donovan
    Keymaster

    Please, upload the same icon in black colour, and we will prepare a code snippet for you.

    Regards

    #79482

    amaury_santillan
    Participant
    #79509

    Hello,

    Please add this snippet to the Theme settings > Custom CSS > Custom CSS for tablet/ Custom CSS for mobile landscape /Custom CSS for mobile

    .product-grid-item .product-information .fade-in-block .woodmart-buttons .woodmart-add-btn>a:before {
    	height: 40px;
    	width: 100%;
        background-image: url(https://www.outlet.viajes/wp-content/uploads/2018/09/icono-avión-movil.png);
    }

    Best Regards

    #79523

    amaury_santillan
    Participant

    I did it.

    Still not working thoug.

    #79585

    Artem Temos
    Keymaster

    Sorry, try to replace with the following code

    body .product-grid-item .product-information .fade-in-block .woodmart-buttons .woodmart-add-btn>a:before {
    	height: 40px;
    	width: 100%;
    	background-image: url(https://www.outlet.viajes/wp-content/uploads/2018/09/icono-avión-movil.png);
    }
Viewing 16 posts - 1 through 16 (of 16 total)