Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Left and right movement on mobile

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #241217
    jknetdesign
    Participant

    Can you guys identify what’s causing the horizontal scroll on iPhone? When I touch the screen and scroll it also moves left or right.

    http://www.francosorangebeach.com/

    #241229
    Beverleyh
    Participant

    In the developer toolbar, there’s an h1 with .headline__primary class that doesn’t ‘feel’ right to me. The negative right margin might be creating extra width.

    What you ultimately might have to do though is hide all the main parent elements (the ones that are siblings/in the same level of the DOM), barring one, in turn, to see which holds the offending element;

    #fancybox-tmp, #fancybox-loading, #fancybox-overlay, #fancybox-wrap { display:none }
    

    This would leave only #page visible.

    Check in iPhone. If the margin is still there, work through the main sibling elements of #page and do the same as before;

    #page header, #page article, #page footer { display:none }
    

    This would leave the only div inside #page visible.

    Check in iPhone again. If the margin is now gone, you know that header, article, or footer will be, or contain, the culprit.

    Keep narrowing down like that and you’ll eventually find where the problem element lies.

    #241258
    jknetdesign
    Participant

    Thanks for your time on this. I’m assessing your reply now.

    #241287
    jknetdesign
    Participant

    Got it! I removed a negative margin and padding from a span that was in the H2 in the footer widget.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.