Arrows + a dot showing through on menu (mobile only)

Solved

Arrows + a dot showing through on menu (mobile only)

Ryan1998
Pathfinder
101 2 32

There is arrows + a dot showing through on menu (mobile only) is there a way of fixing this please?

url: https://errival.com/products/errival%E2%84%A2-mini-rubber-band-shotgun 

PHOTO-2024-08-13-19-39-48.jpg

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9834 2339 2929

This is an accepted solution.

Hi @Ryan1998 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 749px) {
    .product .slider-buttons {
        z-index: 1;
    }
nav.menu-drawer__navigation {
    z-index: 3 !important;
}
.header__icon--menu[aria-expanded='true']::before {
    background: transparent;
}
}

 

And Save. 

Result:

Made4uoRibe_0-1723578262545.png

 

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
9834 2339 2929

This is an accepted solution.

Hi @Ryan1998 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 749px) {
    .product .slider-buttons {
        z-index: 1;
    }
nav.menu-drawer__navigation {
    z-index: 3 !important;
}
.header__icon--menu[aria-expanded='true']::before {
    background: transparent;
}
}

 

And Save. 

Result:

Made4uoRibe_0-1723578262545.png

 

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Ryan1998
Pathfinder
101 2 32

🙌