Home Forums WoodMart support forum Brand Icons in Shop

Brand Icons in Shop

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #501101

    DELAYON
    Participant

    Hi there!

    Is there a possibility to move the brand icons on the product picture? We’d like to move the icons (only icons, not the sale or new tags) to the bottom of the image and display them horizontally.
    Currently the icons are blocking the clear view on our products.
    thanks in advance!

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

    Hung Pham
    Keymaster

    Hi DELAYON,

    Thanks for your patience.

    In order to place attribute icons bottom as shown in the screenshot https://prnt.sc/QmIH8LJC6cHz You can add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS

    .product-grid-item .product-labels {
    	bottom: 15px;
    }
    
    .product-grid-item .product-labels :is(.onsale, .new, .featured, .out-of-stock) + .attribute-label {
    	margin-top: auto;
    }

    But I can’t place them horizontally since they share a same wrapper, and changing that HTML structure is impossible with the use of simple custom CSS code.

    Regards,

    #502233

    DELAYON
    Participant

    Awesome thanks!

    What do i need to add to the product-labels :is(.onsale, .new, .featured, .out-of-stock) to have it work for all products even without labels? Just to make sure it looks equal 🙂

    #502384

    Hung Pham
    Keymaster

    Hi DELAYON,

    Above code works when product has one of these badges, in order to make it works with all products even without these badges, you can add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS

    .product-grid-item:not(.sale,.featured, .out-of-stock) .product-labels{
    	top: auto;
    	bottom: 15px;
    }
    
    .product-grid-item .product-labels:has(span.new){
    	top: 15px !important;
    }

    Regards,

    #502775

    DELAYON
    Participant

    Hi there!

    Thanks for the response.
    Currently it’s showing all brand labels the same as it did with the first code. I copied my global CSS in the field below. Not sure if this might have any influence…

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

    Hung Pham
    Keymaster

    Hi DELAYON,

    I tested and it worked well on my end https://prnt.sc/8rASd2D_Nmc9

    Please remove all Custom CSS and try below one.

    .product-grid-item .product-labels {
    	bottom: 15px;
    }
    
    .product-grid-item .product-labels :is(.onsale, .new, .featured, .out-of-stock) + .attribute-label {
    	margin-top: auto;
    }
    
    .product-grid-item:not(.sale,.featured, .out-of-stock) .product-labels{
    	top: auto;
    }
    
    .product-grid-item .product-labels:has(span.new){
    	top: 15px;
    }

    Regards,

    #596378

    DELAYON
    Participant

    Hi there!
    Checking in on this subject again…
    So after a year of working fine, we ran into some issues on this subject again. It´s getting a big crowdy and the icons are blocking our product pictures. So we’ve been thinking a bit about possible solutions:
    1. Where do we find the HTML code that sets the wrapper for the icons?
    2. Would it be possible to get extra space between the image and the product title?
    3. We saw that the icons have a white background on desktop version, but no background on mobile. Is it possible to remove the background color?

    thanks,

    Nico

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

    Hung Pham
    Keymaster

    Hi DELAYON,

    To assist you in the best possible manner, I kindly ask that you please provide me temporary wp-admin info (wp-admin URL, username, password) to the Private Content area, this will allow me to thoroughly investigate and address your concerns more efficiently.

    Regards,

    #597738

    DELAYON
    Participant

    Hi Hung Pham!

    Thanks for the reply. Please find the info below.

    thanks

    #598137

    Hung Pham
    Keymaster

    Hi DELAYON,

    First of all, I’m really sorry have taken long time to reply you.

    Admin credential is incorrect, please check again.

    Regards,

Viewing 10 posts - 1 through 10 (of 10 total)