niteshifte Posted December 13, 2023 Share Posted December 13, 2023 (edited) I would love to reduce the size of the product titles and price on the Mobile homepage. I have already used code to reduce it on the product page for mobile but it doesn't seem to transfer across to the homepage. https://www.peterotoole.ie I'd like to Bold the titles for eg and reduce the size of both to match what I have done on the other pages of the site. Thanks a mill! Edited December 14, 2023 by niteshifte Link to comment
tuanphan Posted December 15, 2023 Share Posted December 15, 2023 You can add this code to Website Tools (under Not Linked) > Custom CSS @media screen and (max-width:767px) { body.homepage .product-block * { font-size: 14px !important; } } niteshifte 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
niteshifte Posted December 15, 2023 Author Share Posted December 15, 2023 (edited) 6 minutes ago, tuanphan said: You can add this code to Website Tools (under Not Linked) > Custom CSS @media screen and (max-width:767px) { body.homepage .product-block * { font-size: 14px !important; } } thanks for that! I wanted to actually have a different size for the title and the price with the title bold. I wanted to match the screenshot below as much as possible. Edited December 15, 2023 by niteshifte Link to comment
Solution tuanphan Posted December 16, 2023 Solution Share Posted December 16, 2023 Use this new code @media screen and (max-width:767px) { body.homepage .product-block .product-title { font-size: 20px !important; } body.homepage .product-block .product-price { font-size: 14px !important; } } niteshifte 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
niteshifte Posted December 16, 2023 Author Share Posted December 16, 2023 6 hours ago, tuanphan said: Use this new code @media screen and (max-width:767px) { body.homepage .product-block .product-title { font-size: 20px !important; } body.homepage .product-block .product-price { font-size: 14px !important; } } THANKS SO MUCH!! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment