Menu overlay shadow problem

Solved

Menu overlay shadow problem

catotoi
Visitor
2 0 1

Hello,

 

I have a problem about side menu on my mobile site. There is a shadow which block the clicking of users.

 

Any solution? Thank you.

 

Screen Shot 2025-03-21 at 11.36.13.png

Accepted Solution (1)

TheUntechnickle
Shopify Partner
456 49 114

This is an accepted solution.

Hey there,

Please add this CSS in your base.css file, it should solve the issue. Using position: relative changes how the overlay is positioned in the document flow, removing it from the fixed layer that was blocking interactions with your menu.

 

@media screen and (max-width: 749px) {
    .country-selector__overlay {
        position: relative !important;
    }
}

 

Cheers!
Shubham | Untechnickle

Helping for free: hello@untechnickle.com


Don't forget to say thanks, it'll make my day - just send me an email! 


Get Revize for Free | Let your shoppers edit orders post-purchase | Get Zero Support Tickets | #1 Order Editing + Upsell App

View solution in original post

Replies 4 (4)

thescriptflow
Shopify Partner
633 42 82

Hey @catotoi could you please share your Store URL and password so that I take a look and provide you Solution code.

Thanks

- Need a Shopify Specialist? Chat on WhatsApp Or Email at info@thescriptflow.com

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


- If my solution was helpful, mark it as a solution and hit the like button! And Wait Don't forget to Buy me a Coffee

devcoders
Shopify Partner
1293 151 368

Hello @catotoi 

Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

TheUntechnickle
Shopify Partner
456 49 114

This is an accepted solution.

Hey there,

Please add this CSS in your base.css file, it should solve the issue. Using position: relative changes how the overlay is positioned in the document flow, removing it from the fixed layer that was blocking interactions with your menu.

 

@media screen and (max-width: 749px) {
    .country-selector__overlay {
        position: relative !important;
    }
}

 

Cheers!
Shubham | Untechnickle

Helping for free: hello@untechnickle.com


Don't forget to say thanks, it'll make my day - just send me an email! 


Get Revize for Free | Let your shoppers edit orders post-purchase | Get Zero Support Tickets | #1 Order Editing + Upsell App

catotoi
Visitor
2 0 1

Thank you very much. It worked.