Home Forums WoodMart support forum Move discount label

Move discount label

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #278726

    ipcom
    Participant

    How can i move the discount price label in the top right corner of products grid?

    #278742

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .labels-rectangular .onsale { 
    display:none; 
    }

    This would remove the sales label, if you want to move to another place, it is not possible to move this only label. I can move all labels.

    Best Regards

    #278743

    ipcom
    Participant

    I want to move it not to remove it!

    #278803

    Hello,

    Please provide your site admin access to the private area.

    Do you have this label only? I can provide the custom CSS to move all the labels. Please specify where you want to move it?

    Best Regards

    #278806

    ipcom
    Participant

    I only have the discount label. I want to move it on products grid on the top right corner. Give me CSS.

    #278911

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    /*round label*/

    body .labels-rounded {
        top: 7px;
        left: auto;
        right:7px;
    }

    /*rectangular*/

    body .labels-rectangular{
        top: 7px;
        left: auto;
        right:7px;
    }

    Best Regards

    #279129

    ipcom
    Participant

    Since i have decided to go with the rounded one, what is the code to make it smaller both on dekstop and mobile?

    #279194

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .labels-rounded .product-label {
        min-height: 50px;
        width:50px;
        font-size: 14px;
        border-radius:50%;
        padding:0;
    }

    Change the styles as per your needs.

    If you have any questions please feel free to contact us.

    Best Regards

    #279234

    ipcom
    Participant

    This code doesn’t work very well. No matter what style i give it, the circle gets as an elipse and i just want to be smaller.

    #279246

    ipcom
    Participant

    In fact, the width margin doesn’t work.

    #283570

    Hello,

    Sorry for the delay. We have had a technical issue on the forum, your topic was not visible.

    Please provide your site admin access or try this code:

    body .labels-rectangular .product-label {
        min-height: 50px;
        width:50px;
        font-size: 14px;
        border-radius:50%;
        padding:0;
    }

    Best Regards

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