Hi,
im looking to hide this top navigation / tooltip:toolbar menu on Desktop only*
any help is appreciated.my site is https://luxurymrkt.com
mike
picture is attached
Hi,
im looking to hide this top navigation / tooltip:toolbar menu on Desktop only*
any help is appreciated.my site is https://luxurymrkt.com
mike
picture is attached
@Luxurymrkt Go to assets/theme.css and paste below css at bottom of file.
.toolbar__item:first-child
{
display: none !important;
}
.toolbar.small--hide {
display: none !important;
}
Add this code in theme .css
If you are looking to hide only on mobile, you can try out this code.
@media only screen and (max-width: 749px) {
.toolbar.small--hide {
display: none !important;
}
}
Add this code in the bottom of theme.css file.
Thank you.
Hi this code works, but then hides the whole section toolbar on desktop. The right side of toolbar has language selector etc. I just want to hide the navigation on the left for desktop.
Hi this code works, but then hides the whole section toolbar on desktop. The right side of toolbar has language selector etc. I just want to hide the navigation on the left for desktop.