RecapRabbitHole Posted May 24, 2020 Share Posted May 24, 2020 Site URL: https://www.recaprabbithole.com/recap/human-viruses I cant scroll on android phones. I am using some custom CSS, that @tuanphan helped create (thank you!), to make images stretch across the entire screen on my blog posts, here: @media screen and (max-width:767px) { /*This stretches the everything across the screen on the blog posts*/ /* make image fullwidth */ .blog-item-wrapper article.entry { padding-left: 0; padding-right: 0; } /* Add padding around text blocks, both sides, leaving out, image/gallery/embed - blocks */ .blog-item-wrapper .sqs-layout>.row>.col>div:not(.image-block, .gallery-block, .embed-block) { padding-left: 9vw; padding-right: 9vw; } /*This code fixes the iphone horizontal scrolling, but stops all scrolling on androids*/ html, body { overflow: hidden; } } I know the piece of code that is causing the issue: /*This code fixes the iphone horizontal scrolling, but stops all scrolling on androids*/ html, body { overflow: hidden; } But without this code above, the mobile site has a black bar on the right-hand side, allowing strange horizontal scrolling on iPhones, see attached video for issue without red code. How should I revise this code, to allow scrolling on android phones? @paul2009 Do you have any thoughts? - recaprabbithole.com Link to comment
paul2009 Posted May 24, 2020 Share Posted May 24, 2020 If you are experiencing overflow (the extra black area to the right) you are usually better off finding the cause, than adding workarounds. That said, the code above is incorrect and the cause of the no-scroll issue. It should be overflow-x: hidden not overflow: hidden Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional. Would you like your customers to be able to mark their favourite products in your Squarespace store? Link to comment
RecapRabbitHole Posted May 24, 2020 Author Share Posted May 24, 2020 Thanks for the quick reply. I have revised overflow-x: hidden Found the issue, problematic CSS elsewhere: html { overflow-x: initial !important; } @paul2009 thanks - recaprabbithole.com Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.