Home Forums WoodMart support forum Change Custom Label Position on Shop Grid and Product Page Reply To: Change Custom Label Position on Shop Grid and Product Page

#334926

Luke Nielsen
Keymaster

Hello,

You can change the position of the recycled label using the following custom CSS code in Theme Settings -> Custom CSS -> enter the code to the “Global Custom CSS” field.

.single-product .product-images .labels-rounded {
    bottom: 0;
}

.single-product .attribute-label {
    position: absolute;
    bottom: 156px;
}

.product-grid-item .attribute-label {
    position: absolute;
    bottom: 0;
    right: 0;
}

.product-grid-item .product-labels {
    right: 7px;
    bottom: 7px;
    max-width: 100%;
    pointer-events: none;
}

Kind Regards