Hi everyone,
I have added a custom code to display a quantity/stock indicator on my store. The indicator was working fine on desktop, but when I checked on mobile, the css styling that I applied is not working on mobile. Does anyone know what might be the problem with this? See photo for reference:
Store Preview URL: https://1r0c4mtux8ldg2yl-13830324282.shopifypreview.com
Hi @IntechCarl
Please follow the steps below to change the sale badge font size in the Dawn theme:
Step 1: Go to Shopify Admin β Online Store β Theme β Edit code.
Step 2: Go to the assets folder.
Step 3: Insert the following code in the bottom of the base.css file.
.card-information p.inventory-stock.in-stock {
color: green !important;
}
.card-information p.inventory-stock.out-of-stock {
color: red !important;
}
Hope this can help you!
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 
Hi @IntechCarl , you can follow these steps:
Step 1: Open Online Store β Themes β Edit code.
Step 2: Find component-card.css file
Step 3: Paste this code at the bottom of the file
.card-information .inventory-stock.in-stock {
color: green !important;
}
.card-information .inventory-stock.out-of-stock {
color: red !important;
}
If this is helpful, please let us know by giving us a like and marking it as a solution. Thank you 
1 Like
Hi @B2Bridge , Itβs not working