Hello,
can anyone help me I want to have the sale badge on right side prestige theme
A user seeks help moving the sale badge to the right side on the Prestige theme for their Shopify store (45keys.com).
Solutions Proposed:
Liquid_xPert_SJ suggests adding CSS code to theme.css in the assets folder to reposition the badge using position: absolute and right: 10px properties.
ZestardTech provides similar CSS targeting .badge-list with positioning adjustments, recommending placement at the bottom of theme.css.
Current Status:
The issue remains unresolved. The original poster reports the suggested code didn’t work after implementation. Liquid_xPert_SJ requests clarification on whether the code was actually added to the correct file, as they cannot see it in place. The most recent suggestion involves placing code before the </body> tag in theme.liquid file, possibly to address caching issues.
The discussion appears ongoing with troubleshooting in progress.
please add below code into your theme file called theme.css in the assets folder and hopefully it will fix.
.product-card__figure .badge-list {
position: relative ;
top: 0;
}
.product-card__figure .badge-list .badge--on-sale {
position: absolute;
right: 10px;
top: 0;
}
Thanks
Hi @MS2333
badge-list.badge-list.badge-list--vertical {
position: absolute;
top: 0;
}
.bss_pl_img {
position: absolute;
right: 30px;
top: 0;
bottom: 0;
left: 50%;
}
hey, I implemt your code but unfortunaly that didn´t work
can you please put that again because i dont see any code in the file which i mentioned?
now ?
Can you please put this code into your theme.liquid file before the tag close i guess there will be some cache issue.