Home › Forums › WoodMart support forum › font size of product titles in mobile version › Reply To: font size of product titles in mobile version
January 6, 2023 at 5:51 am
#433472
Elise Noromit
Member
Hello,
The font size configured in the Theme Settings is not applied in the mobile view.
The font is reduced on 90% on mobile.
Please add this code to the Theme Settings > Custom CSS > Global:
@media (max-width: 1024px) {
html body .products .product-grid-item .wd-entities-title {
font-size: 15px;
}
}
The title is cut as you have enabled the limitation of the title and set the custom CSS for mobile: https://prnt.sc/db-yvOD-2TTU
In order to correct that you need either disable this option or increase the title height, please add this code if you want to increase the height:
@media (max-width: 1024px) {
html body .main-page-wrapper .product-grid-item .wd-entities-title {
--title-line-height: 20px;
}
}
If you have any questions please feel free to contact us.
Best Regards