Overlays missing title on mobile

Try this

div[class*=“mobile-sidemenu”] span {
display: none !important;
}

Managed to do

nav[class*=“mobile-sidemenu”] h1 span span {
display: none !important;
}

Gonna see if I can tweak that for the desktop one to avoid generated classe
s

1 Like

Okay final working css without generated classes (if I understand correctly cause Im a bit rusty with CSS these days)

Desktop:

div[class*=“desktop-nav-bar”] > span {
display: none !important;
}

Mobile:

nav[class*=“mobile-sidemenu”] h1 span span {
display: none !important;
}

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.