Is it possible to hide a menu link on desktop, so it only shows in mobile and iPad?
Thanks!
Is it possible to hide a menu link on desktop, so it only shows in mobile and iPad?
Thanks!
Hi @gadea_1 , yes it’s possible, please share url and explain which link you’d like to hide. ![]()
Hi @MarinaPetrovic thanks for the confirmation!
My url is gellednails.com I’d like the “starter pack” link on the header menu to only be shown on smartphones and tablets, not desktop
@gadea_1 go to edit code > assets > base.bundle.css and add this:
nav ul li:first-child{
display:none;
}
@media all and (max-width: 850px) {
nav ul li:first-child{
display:block;
}
}