My client wants a footer menu only. Please can you tell me the css to add to keep the footer menu on all devices. To accommodate this can you also include the css to remove the copyright on the left on mobile size devices. I only have 4 links but this needs to pass the mobile responsive standards so also a burger menu if necessary.
Thanks
Hey fanlokbun!
Add this to your custom CSS.
#socket .sub_menu_socket {
display: block !important;
}
@media screen and (max-width: 767px) {
.copyright { display: none !important; }
}
Cheers!
Elliott
Just the job. Many thanks Elliott