Bug When Viewing Site With Google Chrome (Mac and PC)

  • Unknown's avatar

    When viewing ‘https://cla.asla.org/’ using Google Chrome Version 53.0.2785.116 (64-bit), a bug exists when scrolling. As you scroll down the page, the text and other elements seem to ‘slide / push off the page’ (i.e. elements start to disappear as you scroll).

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I found the problem, but I am not sure how to resolve it. The following CSS is causing the issue…

    https://s0.wp.com/_static/??/wp-content/mu-plugins/actionbar/actionbar.css,/wp-content/themes/h4/global.css?m=1475030649j

    div#actionbar {
    -webkit-backface-visibility: hidden;
    }

    Please note that WordPress marked my previous comment as “The blog I need help with is dirt.asla.org.” – This is NOT correct.

    The bug exists on cla.asla.org.

    Thanks

  • Hi @aslapazzolini, it actually looks like this bug is caused by the site’s custom CSS:

    html,body {
    	width: 100%;
    	height: 100%;
    	margin: 0;
    	padding: 0;
    	overflow-x: hidden;
    	position: fixed;
    }

    Specifically that last declaration with the “position: fixed” … can you take out, and let us know what you were intending to do there?

  • Unknown's avatar

    Hey @supernovia, your suggestion worked. I changed the CSS to the following:

    html,body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    }

    This has resolved the issue.

    Thank you for your help.

  • Glad you’ve got this worked out. Cheers!

  • The topic ‘Bug When Viewing Site With Google Chrome (Mac and PC)’ is closed to new replies.