kakers Posted November 18, 2019 Share Posted November 18, 2019 My client's website is growthleadersgroup.com There is a left/right shift on mobile where you can basically grab the screen and move it left or right and then it will spring back when released. a horizonal scroll? I cannot figure this out! Special Modern Design Link to comment
tuanphan Posted November 18, 2019 Share Posted November 18, 2019 add to Home > Design > Custom CSS @media screen and (max-width:640px) { .row.sqs-row { margin-left: 0; margin-right: 0; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
kakers Posted November 18, 2019 Author Share Posted November 18, 2019 thanks Special Modern Design Link to comment
theresa.southern Posted May 5, 2020 Share Posted May 5, 2020 (edited) On 11/17/2019 at 8:27 PM, kakers said: Did that work for you? That did not work but when we added the code below it worked only it made a black box show up over our mobile navigation menu. html, body {overflow-x: hidden;} @media screen and (max-width:640px) { .row.sqs-row { margin-left: 0; margin-right: 0; } } On 11/17/2019 at 8:27 PM, kakers said: My client's website is growthleadersgroup.com There is a left/right shift on mobile where you can basically grab the screen and move it left or right and then it will spring back when released. a horizonal scroll? I cannot figure this out! Edited May 5, 2020 by theresa.southern Link to comment
AkankshaK Posted March 20, 2021 Share Posted March 20, 2021 Has any one found a solution to this please? @tuanphan I tried your code but it did not resolve. Link to comment
tuanphan Posted March 22, 2021 Share Posted March 22, 2021 On 3/20/2021 at 5:25 PM, AkankshaK said: Has any one found a solution to this please? @tuanphan I tried your code but it did not resolve. Can you share link to page where you have problem? We can help easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
julie2 Posted July 19, 2021 Share Posted July 19, 2021 On 3/20/2021 at 5:25 AM, AkankshaK said: Has any one found a solution to this please? @tuanphan I tried your code but it did not resolve. This is what works for me. //stop horizontal overflow body { overflow-x:hidden; overflow-y:visible; } @media screen and (max-width:640px) { .Site { overflow-x:hidden; overflow-y:visible; } } tuanphan 1 Link to comment
powerhouseoutletmedia Posted September 6, 2021 Share Posted September 6, 2021 (edited) Hello, can someone help me with this please? On my desktop everything is fine. On mobile, it is not. Please help. powerhouseoutletmedia.com PHOmedia Edited September 6, 2021 by powerhouseoutletmedia Link to comment
tuanphan Posted September 7, 2021 Share Posted September 7, 2021 On 9/6/2021 at 8:30 AM, powerhouseoutletmedia said: Hello, can someone help me with this please? On my desktop everything is fine. On mobile, it is not. Please help. powerhouseoutletmedia.com PHOmedia Try adding to Design > Custom CSS @media screen and (max-width:767px) { html, body { overflow-x: hidden; } } rolan_sanch 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
kakers Posted January 26, 2022 Author Share Posted January 26, 2022 Now I have a vertical scroll (on mobile) I need to get rid of. anyone? Special Modern Design Link to comment
kakers Posted January 26, 2022 Author Share Posted January 26, 2022 this worked: @media screen and (max-width:767px) { html, body { overflow: hidden; }} Special Modern Design Link to comment
tuanphan Posted January 27, 2022 Share Posted January 27, 2022 On 1/26/2022 at 12:41 PM, kakers said: this worked: @media screen and (max-width:767px) { html, body { overflow: hidden; }} This code will disable scroll on all pages on mobile, you should check again. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
JOLeary Posted January 30, 2022 Share Posted January 30, 2022 On 9/7/2021 at 8:56 AM, tuanphan said: Try adding to Design > Custom CSS @media screen and (max-width:767px) { html, body { overflow-x: hidden; } } This worked for me! LEGEND!!!!! x Link to comment
sharine Posted February 10, 2022 Share Posted February 10, 2022 Does anyone know how to do this for just one page on mobile and not all? Link to comment
tuanphan Posted February 14, 2022 Share Posted February 14, 2022 On 2/11/2022 at 6:50 AM, sharine said: Does anyone know how to do this for just one page on mobile and not all? Add to Page Header <style> @media screen and (max-width:767px) { html, body { overflow-x: hidden; } } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
BONICA Posted March 8 Share Posted March 8 Hello, I am having this issue as well @tuanphan can you please advise? Site is not live yet Link to comment
tuanphan Posted March 13 Share Posted March 13 On 3/9/2024 at 5:10 AM, BONICA said: Hello, I am having this issue as well @tuanphan can you please advise? Site is not live yet You can use this code to Website > Website Tools > Custom CSS .products.collection-content-wrapper .nested-category-children { overflow: hidden !important; } if it doesn't work, you can share site url, I can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
MATT123456789 Posted June 7 Share Posted June 7 MY Website is having a horizontal scroll when it didn't before its Giuliani Construction & Restoration Link to comment
tuanphan Posted June 10 Share Posted June 10 On 6/7/2024 at 11:11 PM, MATT123456789 said: MY Website is having a horizontal scroll when it didn't before its Giuliani Construction & Restoration You can use this to Website Tools > Custom CSS. html { overflow-x: hidden; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment