Dropdown menu transparent to match my transparent header DAWN THEME

I have a navigation header with a dropdown menu, and I’m striving to make the dropdown menu transparent to match the header’s appearance seamlessly.

Here’s a brief description of what I’m aiming for:

  • I want the dropdown menu background to be completely transparent.
  • The text within the dropdown menu should remain visible and styled appropriately

The site is https://www.studionkistanbul.com/

Hi @emilyyy ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid file
  3. Paste below code before :
{% if template == 'index' %}

{% endif %}

Best regards,

Anthony

Hi @emilyyy

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
div#MegaMenu-Content-1, div#MegaMenu-Content-4 {
    background: transparent;
}
div#MegaMenu-Content-1, div#MegaMenu-Content-4 * {
    color: white;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

That worked perfectly! Thank you so much. One more question, on “about” the dropdown pushes the sub pages very left- is there any way to fix that?

Yes, you can try to add more code below:


Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.header--top-center .mega-menu__list>li {
    width: 100%;
}

div#MegaMenu-Content-4 {
    text-align: center;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!