jkristobans Posted November 14, 2020 Posted November 14, 2020 Site URL: https://www.theemailschool.com/ How to align everything to left on mobile 7.0? Brine template.
tuanphan Posted November 14, 2020 Posted November 14, 2020 You mean button on homepage? Add to Design > custom CSS @media screen and (max-width:767px) { div#block-yui_3_17_2_1_1603876085960_23520 { float: left; } } 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!)
jkristobans Posted November 15, 2020 Author Posted November 15, 2020 19 hours ago, tuanphan said: You mean button on homepage? Add to Design > custom CSS @media screen and (max-width:767px) { div#block-yui_3_17_2_1_1603876085960_23520 { float: left; } } Yes yes. That worked. Thank you. But I have more pages like this. Shall I do the same code for other pages? Screenshot in the attachment. I have a similar code for the footer. That aligns left to all pages. /* Align footr mobile */ @media screen and (max-width:640px) { div#footerBlocksBottom * { text-align: left !important; } }
tuanphan Posted November 17, 2020 Posted November 17, 2020 Try adding this to Design > custom CSS /* mobile align left */ @media screen and (max-width:640px) { * { text-align: left !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!)
jkristobans Posted November 17, 2020 Author Posted November 17, 2020 3 hours ago, tuanphan said: Try adding this to Design > custom CSS /* mobile align left */ @media screen and (max-width:640px) { * { text-align: left !important; } } thank you so much. that worked. Juris
Recommended Posts
Archived
This topic is now archived and is closed to further replies.