Home Forums WoodMart support forum How to remove or move the sales icon?

How to remove or move the sales icon?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #527719

    evanlee01141991
    Participant

    The sales icon have been cover my message, may I know how to move it from left to right corner or how to remove it even under sales product?

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

    Hung Pham
    Keymaster

    Hi evanlee01141991,

    Thanks for reaching to us.

    Please add the following code in Theme Settings > Custom CSS > Global Custom CSS

    .wd-product.sale .product-labels{
    	right: 5px;
    	left: auto;
    }

    Regards,

    #528137

    evanlee01141991
    Participant

    How about removing it? Can I also have the removed coding just in case I need it in the future?

    #528141

    Hung Pham
    Keymaster

    Hi evanlee01141991,

    Thanks for reaching to us.

    Please remove previous Custom CSS add the following code in Theme Settings > Custom CSS > Global Custom CSS

    /* Move labels to the right */
    .wd-product.sale .product-labels{
    	right: 5px;
    	left: auto;
    }
    
    /* Remove labels */
    .wd-product.sale .product-labels{
    	display: none;
    }

    Regards,

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