How to Remove Menu Title from Mobile (Turbo Theme)

I’d like to remove the ‘menu’ title on the mobile version of this theme. Any ideas?

Hi @micaiahwebb

Can you share with me the page URL? I will help you check it. Thank you.

https://the-atheneum.myshopify.com/

Hi @micaiahwebb

This is Lucas from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file styles.css

Step 3: Paste the below code at bottom of the file → Save

@media only screen and (max-width: 798px){

summary.mobile_nav.dropdown_link span.mobile-menu-title {

display: none !important;

}}

Hope that my solution works for you.

Best regards,

Lucas | PageFly

Unfortunately the menu title is still showing up :confused:

You can try again this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: paste bellow code in tag → save.

span.mobile-menu-title { display: none !important; }

Sorry, I’m not sure where to paste this!
doesn’t pull anything up when I search for it. Could it be called
something else?

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > styles.css and paste this at the TOP of the file:
.mobile-menu-title {
display: none!important;
}

Thank you! That worked for me.