Hi, can anyone help me remove the “created with” icon in the bottom right corner of the 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:
-
Edit theme.liquid file: Add custom CSS code above the
</body>tag in the theme.liquid file (accessed via Online Store > Edit Code). -
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.
Hey @Daniel19901
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
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; }
