Hi, the woocommerce sale bubble that should hover over the product page is taking the full width of the page and it just looks really bad.
How can I fix this?
Hey DROR,
Try this code in the General Styling > Quick CSS field:
#top .main_color .onsale {
max-width: 40px!important;
}
Best regards,
Mike
Hi Mike, that worked and made it smaller but it is not over the image, it is over the title. How can I make it appear over the image?
Hi,
Please check if it has a setting to place it to the left, if not try this code:
#top .single-product-main-image .onsale {
right: 95%!important;
}
Best regards,
Mike
Thanks!