Transparent dropdown menu on home page only

Hi everyone,

I’m looking for some assistance in making the dropdown menu on my website transparent with white lettering on my desktop home page only.

I was able to achieve the effect using the attached code, but it changes the menu so that it can’t be seen on other product pages.

Thank you in advance for any input!

details[open] > .header__submenu {
  background-color: transparent !important;
  border: none !important;
}
.header-wrapper * {
  color: white !important;
}

make sure to include .template_index class on css code so it applies only to homepage .

Hi @vfp1

You can add this code to your theme.liquid file, after to make it work on desktop homepage only

{% if template == 'index' %}

{% endif %}

Best Regards,

Dan from Ryviu

Thank you so much! This worked perfectly!!

1 Like

Happy I could help!