wv2020
March 24, 2021, 4:09am
1
Hi there!
I am using minimal theme and found that my sales badge / sold out badge is wrongly positioned, and I want to change its shape back to circle and put it into the top right hand corner.
May I know how could I update the coding?
Thanks a lot!
@wv2020 - please share page link
please share your site link and page link and if any password then please provide password
wv2020
March 24, 2021, 7:43am
4
@wv2020 - add this to the end of theme.scss file and check, adjust number as per need.
.badge{
border-radius: 0; top: 0; left: initial; right: 0; padding: 5px;
}
1 Like
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.grid-link__image .badge--sold-out{
top: 0 ;
right: initial !important;
border-radius: 0 !important;
left: 0;
padding: 10px !important;
}
1 Like