Header on homepage

Solved

Header on homepage

nothingchanges
Excursionist
44 0 10

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

 

1. My logo is highlighted when i scroll and hover

Screenshot 2024-12-28 at 10.47.35 AM.png 

 

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

Screenshot 2024-12-28 at 11.53.05 AM.png

 

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

Accepted Solution (1)

DaisyVo
Shopify Partner
2668 322 372

This is an accepted solution.

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 </head>

{% 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: 

image_720.png

image_720.png

 

I hope this helps

 

Best,

 

Daisy

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 2 (2)

DaisyVo
Shopify Partner
2668 322 372

This is an accepted solution.

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 </head>

{% 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: 

image_720.png

image_720.png

 

I hope this helps

 

Best,

 

Daisy

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
nothingchanges
Excursionist
44 0 10

THANK YOU SO MUCH!