Menu transparent on Homepage Theme Craft 15.2.0

Menu transparent on Homepage Theme Craft 15.2.0

1 Like

@GiudFabri123 Can you please share this page link?

www.scanditure.com

@GiudFabri123 add this code to the theme.liquid file, before tag

{% if template.name == "index" %}

{% endif %}

Hi @GiudFabri123

Do you mean menu drawer? like this?

If it is, try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “theme. Liquid” file. Find the tag and paste the code below before the tag.
{% if template.name == 'index' %}

{% endif %}
  • And Save.

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

Hi @GiudFabri123

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

#menu-drawer {
    background: transparent;
}

Best,

Daisy