Remove text from mega menu

Topic summary

A user seeks help removing a “created with” icon appearing in the bottom right corner of their mega menu.

Two solutions provided:

  1. Edit theme.liquid file: Add custom CSS code above the </body> tag in the theme.liquid file (accessed via Online Store > Edit Code).

  2. Use Custom CSS panel: Insert CSS code directly in the theme customizer (Online Store > Themes > Customize > Theme settings > Custom CSS).

Both approaches use CSS to hide the watermark element by setting display: none and opacity: 0 on the .menu-watermark.menuitem_link class.

The discussion appears resolved with working solutions provided, though the original poster hasn’t confirmed which method they used.

Summarized with AI on November 5. AI used: claude-sonnet-4-5-20250929.

Hi, can anyone help me remove the “created with” icon in the bottom right corner of the mega menu

https://cytjyxmtmvbocgig-50820350128.shopifypreview.com

Hey @Daniel19901

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @Daniel19901

You can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings to remove that part.

.tmenu-watermark.tmenu_item_link { display: none !important; opacity: 0 !important; }