What's your biggest current challenge? Have your say in Community Polls along the right column.

horizontal scroll issue (PC)

Solved

horizontal scroll issue (PC)

edwinsoltan
Excursionist
44 0 14

Hi, can somebody help me remove the horizontal scroll caused by the website being slightly zoomed in? I was able to get help for the mobile version, but not for the PC version. Thank you in advance

 

STORE https://timecraft.se/

 

Accepted Solution (1)

Guleria
Shopify Partner
3691 741 1039

This is an accepted solution.

Use the same css I provided in previous post but outside the media query

html, body {
    overflow-x: hidden;
}

 

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 4 (4)

Guleria
Shopify Partner
3691 741 1039

This is an accepted solution.

Use the same css I provided in previous post but outside the media query

html, body {
    overflow-x: hidden;
}

 

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
edwinsoltan
Excursionist
44 0 14

Thank you again!

Moeed
Shopify Partner
6339 1720 2077

Hey @edwinsoltan 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
html, body {
    overflow-x: hidden !important;
}
</style>

RESULT:

Moeed_0-1732811086922.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

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


edwinsoltan
Excursionist
44 0 14

thank you!