How do i make my website logo stay in my drop down menu

How do i make my website logo stay in my drop down menu

MastaDizzy
Excursionist
20 0 1

Hello, when i open my drop down menu i would like my logo to stay instead of disappearing. Is there a solution? p1.pngp2.png 

Replies 4 (4)

Bundler-Manuel
Excursionist
165 9 20

Hello @MastaDizzy you can try this to make the logo stay even when the menu drops down 

1) Go to the Admin Page then click on Online Store then select Themes, then go to Actions and then click on Edit code.
2. In the Asset folder, open the theme-index.min.css
3. Paste the code below at the very bottom of the file.

@media only screen and (min-width: 950px) {
ul.dropdown-menu.dropdown-menu--mega {
margin-top: 95px !important;
}
}

Try this out then let me know if it works for you!

Emmanuel
Please let me know if it works by marking it as a solution!
Bundler - Product Bundles app, a great bundle app for Shopify, with glowing user testimonials and a free plan.
MastaDizzy
Excursionist
20 0 1

My theme does not seem to have the "theme-index.min.css" in assets.

rifat_ShopiDevs
Shopify Partner
61 6 9
Hi,  @MastaDizzy 

 

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above </head> tag:
h1.header__heading, h1.header__heading * {
    display: block;
}
 
Hope this can help you,



 
Found it helpful? Please like and mark the solution that helped you.
Slider Revolution - Create sliders, theme sections, banners, videos, pages, advanced animation, and social feeds.
Essential Grid Gallery - Create photo galleries, video galleries, portfolio galleries, product gallery, collection gallery and more.
EasyDisplay: Product Showcase - Easily display collections, related products, discounts, recently viewed items, and best sellers
MastaDizzy
Excursionist
20 0 1

MastaDizzy_0-1727111973007.png

MastaDizzy_1-1727112015230.png

Did i do something wrong to cause this ?