Site logo

[Resolved] Change Sale Badge Position on Mobile Display

Home Forums Support [Resolved] Change Sale Badge Position on Mobile Display

Home Forums Support Change Sale Badge Position on Mobile Display

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

    Hi,

    I would like to request your assistance in changing the position of the sale badge on the mobile display of my online store.

    Currently, the badge is displayed above the product photo, but I would like it to be positioned right before the product title instead.

    Thank you.

    #2565433
    Fernando
    Customer Support

    Hi Willya,

    Can you try adding this through Appearance > Customize > Additional CSS?:

    
    @media (max-width: 768px){
    .single-product .entry-content .product {
        display: flex;
        flex-direction: column;
    }
    
    .woocommerce-product-gallery {
        order: -1;
    }
    
    .single-product .entry-content span.onsale {
        width: fit-content;
    }
    }
    
    #2566729
    Willya

    Thank you Fernando. It worked!

    #2566744
    Fernando
    Customer Support

    You’re welcome, Willya!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.