Header on homepage

Hi guys! I have 2 current issues that I’m facing :

  1. My logo is highlighted when i scroll and hover

  1. The square slider button scroll past above my header.

Could someone help me with this please. Your help is very much appreciated.

Hi @nothingchanges

In order to fulfill your request, please follow these steps

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above

{% style %}
{% if template.name == "index" %}
body .header-wrapper:hover .header__heading-logo {
    filter: none !important;
}
.slideshow__controls.slider-buttons {
    z-index: 2 !important;
}
{% endif %}
{% endstyle %}

Here is the result:

I hope this helps

Best,

Daisy

1 Like

THANK YOU SO MUCH!