Home › Forums › WoodMart support forum › Custom style fix › Reply To: Custom style fix
October 31, 2018 at 8:39 am
#86207
Elise Noromit
Member
Hello,
That is right you created two HTML. Now you need to insert one in the header and other in the product page.
I see the font-size has been changed. The small font-size is good for the header but not good for a product page. Try to use this code to set different font-sizes for different places:
/*product page*/
.woodmart-after-add-to-cart .woodmart-timer > span {
min-width: 40px;
min-height: 40px;
font-size: 16px;
}
.woodmart-after-add-to-cart .woodmart-timer > span span {
font-size: 8px;
}
/*header*/
.whb-main-header .woodmart-timer > span{
min-width: 40px;
min-height: 40px;
font-size: 16px;
}
.whb-main-header .woodmart-timer > span span {
font-size: 8px;
}
Best Regards