MariElisabeth Posted May 31 Share Posted May 31 When I look at the announcement bar on mobile, the line height is messed up and scrunched together. This is the code I tried using. It's nice that it makes the bar bigger on mobile, but now I need to adjust the line height. @media screen and (max-width:991px) { .sqs-announcement-bar-text { height: 10vw !important; line-height: 40px !important; } } Link to comment
tuanphan Posted June 2 Share Posted June 2 What is your site url? We can check easier. 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
MariElisabeth Posted June 3 Author Share Posted June 3 (edited) https://manteconstudio.com/ Edited June 3 by MariElisabeth Link to comment
tuanphan Posted June 5 Share Posted June 5 Add this code to bottom of CSS box @media screen and (max-width:767px) { .sqs-announcement-bar-text { height: unset !important; } } 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
MariElisabeth Posted June 5 Author Share Posted June 5 Thank you tuanphan, however, that doesn't seem to make a difference. It seems to me that we would change the line height? https://manteconstudio.com/ Link to comment
Solution tuanphan Posted June 7 Solution Share Posted June 7 On 6/5/2024 at 10:08 PM, MariElisabeth said: Thank you tuanphan, however, that doesn't seem to make a difference. It seems to me that we would change the line height? https://manteconstudio.com/ That will remove space under text, to remove space + adjust line height, use this code @media screen and (max-width:767px) { .sqs-announcement-bar-text { height: unset !important; } .sqs-announcement-bar-text p { line-height: 20px !important; } } 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment