please help me increase this soldout , and new tags size and also reduce title size please , increase the cell span to fill in the gaps . both mobile and pc
Topic summary
A user requests CSS modifications for their Shopify storeās product cards: enlarging āsold outā and ānewā badges, reducing product title size, and adjusting cell spacing to fill gaps on both mobile and desktop.
Solutions Provided:
Two community members offered CSS code snippets to be added to the theme files:
- Target
.card-badgeorx-gridfor badge sizing - Use
h2.card-title.h4selector to reduce title font size - Code should be placed in
theme.liquidunder<style>tags or in CSS files likebase.css
Follow-up Issues:
The original poster clarified that the initial solution also increased sale tag and price font sizes unintentionally. They requested:
- Modifications to affect only the sale badge (not price)
- Mobile-only targeting (desktop appearance is acceptable)
- Alignment fix so all product card prices appear at the same height
The discussion remains open with these refinements pending.
x-grid {
font-size: large;
}
h2.card-title.h4 {
font-size: small;
}
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution
Hi @Shahil1
Try this one.
- From your Shopify admin dashboard, click on āOnline Storeā and then āThemesā.
- Find the theme that you want to edit and click on āActionsā and then āEdit codeā.
- In the āAssetsā folder, click on ābase.css, style.css or theme.cssā file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.card-badge.text-end {
font-size: 1.8rem;
}
h2.card-title.h4 {
font-size: 1.2rem;
}
- And Save.
- Result:
Please donāt forget to Like and Mark Solution to the post that helped you. Thanks!
this increases the size of the sale tag as well as the price font. i only want to focus on the sale tag, secondly make it mobile only since its okay in pc but can you make all the price of the cards on same line in both because i see it in different heights in each product card right now
Welcome! Would you mind hitting ālikeā as well? Thanks!

