Home New Guten Forums WoodMart support forum Center on sale and featured labels

Center on sale and featured labels

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

    d_ch
    Participant

    Hi,

    How is it possible to appear at the center of the product image (as centered) the sale and featured labels?

    Regards,
    Dimitris

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

    Hello,

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

    .product-grid-item .product-labels {
        top: 30% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        max-width: 100%;
        align-items: center;
    }

    Best Regards,

    #662874

    d_ch
    Participant

    Hello Aizaz,

    Would it maybe be possible to appear the sale and featured labels at the top right of the product image?

    Like they appear by default on the top left but exactly at the opposite side on the right?

    Regards,
    Dimitris

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

    Hello,

    If you’d like the sale and featured labels to appear on the top right corner of the product image instead of the default top left, please replace the previous CSS with the following:

    .product-grid-item .product-labels {
        top: 10px !important;
        right: 10px !important;
        left: auto !important;
        transform: none !important;
        align-items: flex-end;
    }

    Best Regards,

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