1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Website jumps slightly when clicking on links

Discussion in 'Templates, HTML, CSS, and Design Help' started by jason1971, Oct 1, 2015.

  1. jason1971 Customer

    Hi all,

    I have an issue with my website, in that it does not matter what links I click on the whole website seems to ever so slightly jump to the right then back again. It is like the site blinks when clicking on links try for yourself to see what I mean.

    Any idea what could be causing this issue, it's driving me mad :mad:
    Cheers

    Jason
  2. freeze2 Super Moderator

    Hi Jason...I just tried using the latest version of FireFox and all appeared to be normal...no page jumping that I noticed :|
  3. Mike-N-Tosh Owner

    I am also not seeing this "jumping" using either Safari or FireFox and a Mac.
  4. jason1971 Customer

    Cheers for the input guys.

    I don't know why, but when I view my site in Chrome it seems to jump around like a bunny rabbit. Now I have install FireFox and it seems ok. Mmm strange.

    Jason
  5. freeze2 Super Moderator

    Ah yes...I see the jumping in Chrome...try adding the following to your css:

    Code:
    html {
        overflow-y: scroll;
    }
    That should force the scroll bar to display and hopefully eliminate the jumping :)
  6. jason1971 Customer

    Freeze what can I say thanks soooooooooooooooo much. I am now one happy bunny :D
  7. jason1971 Customer

    I think I have jump the gun abit Freeze, just checked it again, and it is still doing it.

    Any idea what causes it, so that I can see how to sort it myself
  8. freeze2 Super Moderator

    Hi Jason...unfortunately I was unable to see the jumping using Chrome this time around.

    I did notice a couple of things to fix/check.

    In your <head> you are linking to the following:

    Code:
    <script src="http://code.jquery.com/jquery-1.8.2.js" type="text/javascript"></script>
    <script type="text/javascript" src="jquery-1.5.2.min.js" ></script>
    <script type="text/javascript" src="javascript/jquery/jquery.min.js"></script>
    The first one should be left in place (note: change http to https), the second one should be removed as it is linking to a dead file. The third one should be removed as it could conflict with the first one.

    Sometimes javascript can cause these browser quirks...try the above and see if it helps.
  9. jason1971 Customer

    Thanks Freeze.

    I have made the amendments as you said. I guess if you don't see it - it must be something my end.

    Cheers Jason

Share This Page