Center on sale and featured labels
-
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.
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,
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.
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,