Re: Main menu / Make dropdown menu transparent

Solved

Main menu / Make dropdown menu transparent

CaliWorld
Tourist
8 0 1

Hello to all!

I have a problem with my online store. I would like to have the dropdown menu from the menu bar in the header transparent. I saw that the background is coupled with the main background.
Is there anyone here who can make the background in the dropdown menu transparent for me?
Already tried different opacity values in the code, to no avail!

Thanks a lot in advance!

Accepted Solution (1)
Akibhusen
Shopify Partner
715 121 148

This is an accepted solution.

hi @CaliWorld,

You can mark it as an accepted solution. So other should know there are no action required for this thread.

View solution in original post

Replies 11 (11)

oscprofessional
Shopify Partner
16343 2438 3177

Hi @CaliWorld ,

Share your store URL.

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
CaliWorld
Tourist
8 0 1

cali-world.de

oscprofessional
Shopify Partner
16343 2438 3177

oscprofessional_0-1629891490933.png


like this you want?

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
CaliWorld
Tourist
8 0 1

No. In your screenshot behind "Products" the background is black. It should also be transparent.
The font at "CBD flowers" and "Food & Drinks" should be normal thick. The background behind the two categories should also be transparent.

Akibhusen
Shopify Partner
715 121 148

Hi @CaliWorld,

 

Hope you are well. Can you please share the URL of your store? So, I get better idea for the change

CaliWorld
Tourist
8 0 1

Hi @Akibhusen 

its cali-world.de

Akibhusen
Shopify Partner
715 121 148

Hi @CaliWorld,

Please add the below CSS at the end of your theme.css file. let me know if you want any changes after implementation.

 

.site-nav__dropdown{
	background-color:transparent;
}
.site-nav__dropdown a{
	background-color:transparent;
	color:#000;
}
.site-nav--has-dropdown.is-focused>a, .site-nav--has-dropdown:hover>a{
	background:transparent !important;
}

 

CaliWorld
Tourist
8 0 1

Hi @Akibhusen 

thank you very much. It works!

BUT! The text is black now, not white haha. In which Code i have to change it in #ffffff`?

 

EDIT: Oh i got it. It was beacause your 000 in color. I got in now. Thank you very much @oscprofessional @Akibhusen 

oscprofessional
Shopify Partner
16343 2438 3177

Use for white color  #fff .

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
Akibhusen
Shopify Partner
715 121 148

This is an accepted solution.

hi @CaliWorld,

You can mark it as an accepted solution. So other should know there are no action required for this thread.

oscprofessional
Shopify Partner
16343 2438 3177
a.site-nav__dropdown-link.site-nav__dropdown-link--second-level {
    background: transparent;
}
a.site-nav__link.site-nav__link--has-dropdown {
    background: transparent;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...