Comments lewisd9 started the conversationAugust 3, 2021 at 7:48pmHi,How can I hide or make the footer menu smaller on mobile devices?If you can refer me to a guide that would be great.Thanks! 2,679PenciDesign repliedAugust 3, 2021 at 8:07pmHi,Please go to Appearance → Customize → Custom CSS then add the following custom CSS code: @media only screen and (max-width: 767px) { /* Hide Widget Area Above The Footer */ #widget-area { display: none; } /* Hide Footer Section */ #footer-section { display: none; } /* General Foooter Font Size */ #footer-section { font-size: 12px; } /* Footer Menu Mobile Size */ #footer-section .footer-menu li a { font-size: 12px; } /* Footer Copyright Size */ #footer-copyright * { font-size: 12px; }} Modify the font size on the code above by your custom value.Regards,PenciDesign.1 Likelewisd9 repliedAugust 11, 2021 at 10:39pmThanks alot. This resolved the issue for me. Sign in to reply ...
Hi,
How can I hide or make the footer menu smaller on mobile devices?
If you can refer me to a guide that would be great.
Thanks!
Hi,
Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:
Modify the font size on the code above by your custom value.Regards,
PenciDesign.
Thanks alot. This resolved the issue for me.