Thanks for your attention, what we need is to remove the menu (marked in the picture) in mobile (in any of the mobile pages) but we want to still have it in the desktop footer.
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
@media only screen and (max-width: 690px) {
div#nav_menu-2 {
display:none !important;
}
}
Hello,
How can be the footer changed, so it can be different in mobile than in desktop.
Thanks
Hey Again,
This would have to be customized via CSS code. Let us know which changes you want made so we can write it up for you.
Thanks
ThemeNectar Support Team
Hello Tahir,
Thanks for your attention, what we need is to remove the menu (marked in the picture) in mobile (in any of the mobile pages) but we want to still have it in the desktop footer.
Thank you.
Hey Again,
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team
Awesome, thank you :)