Webswool Posted July 24, 2020 Share Posted July 24, 2020 Site URL: http://wearenativ.com I've recently taken on a client (http://www.wearenativ.com) and I've noticed that when moving from desktop to a mobile device half of the footer text disappears. If reappears when I work on it, and I've been working through the custom CSS (from previous developers) but I haven't been able to find the culprit. It's probably something really simple that I'm missing but it's got me a little bit perplexed! Have attached images for reference. Any help would be hugely appreciated. Link to comment
tuanphan Posted July 24, 2020 Share Posted July 24, 2020 Remove this CSS .Footer .Footer-blocks--middle .col:first-of-type { display: none } .Footer .Footer-blocks--middle .col:last-of-type { display: none } 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
Webswool Posted July 24, 2020 Author Share Posted July 24, 2020 Thanks so much Tuanphan but where are you seeing that CSS? It's not in the custom CSS box that I can see. Link to comment
tuanphan Posted July 24, 2020 Share Posted July 24, 2020 Try adding to Home > Design > Custom CSS @media only screen and (max-width:1024px) { .Footer .Footer-blocks--middle .col:first-of-type { display: block; } .Footer .Footer-blocks--middle .col:last-of-type { display: block; } } 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
Webswool Posted July 24, 2020 Author Share Posted July 24, 2020 Thanks - that worked perfectly. Really appreciate it. Link to comment
Webswool Posted July 24, 2020 Author Share Posted July 24, 2020 Ah. Things are still looking a bit hinky on a tablet - Link to comment
rwp Posted July 24, 2020 Share Posted July 24, 2020 @media screen and (min-width:640px) { #footerBlocksMiddle .col.sqs-col-4.span-4 { width: 33%; } } Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.