I’ve tried searching but I’m not finding the right thing. I need to make sure the footer nav doesn’t disappear with the responsive adjustment.
I attempted using this, changing display:none to both block and inline but it shrinks up with width of the entire content area on the screen.
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.responsive #socket .sub_menu_socket{display:none;}
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
.responsive #socket .sub_menu_socket{display:none;}
Hey janeyj,
Try to add this code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) {
.responsive #socket .sub_menu_socket {
display: block !important;
}
}
Let us know if it works. If it’s not working kindly post a link to your site, you can post it in Private Content section when you reply so only moderators can see.
Best regards,
Nikko
Bingo! Thanks as always!
Hey!
Glad we could help :)
Regards,
Nikko