Hello!
Does anyone know how to get this Menu text ONLY on the desktop version, not mobile?
Website: Nexwatches.no
Picture:
A user seeks to hide menu text on mobile devices while keeping it visible on desktop.
Initial Solutions Attempted:
theme.scss.liquid targeting the header icon button with a media query at max-width 767px, but this approach failed.Working Solution:
theme.liquid file before the </body> tag.Remaining Issue:
Status: Partially resolved - works for homepage only, awaiting solution for site-wide implementation.
Hello!
Does anyone know how to get this Menu text ONLY on the desktop version, not mobile?
Website: Nexwatches.no
Picture:
Hi @Rubberduck
You can try follow this path:
Themes => edit code => asset => theme.scss.liquid
and add this code to bottom of the file theme.scss.liquid
@media(max-width: 767px){
.Header__Icon.button[data-drawer-id="sidebar-menu"] {
font-size: 0;
}
}
Hello
That didnt work
Hello @Rubberduck
You can follow these steps:
I hope the above is useful to you.
Kind & Best regards,
GemPages Support Team
Perfect, it worked! Thank you so much.
Its a small problem! The Menu still shows up at any other page then the home page. How can i remove it from those aswell on mobile? @GemPages