Always present y axis scrollbar not working

Hi all,

Just wondering if you can have a quick look at my BSS website at https://www.audioserv.co.uk/

Because I’m using 100vh for hero section I seem to get y axis scrollbar coming and going (which is annoying as page jumps) even though the pages are long enough. I have tried using chrome on pc.

I have searched and the solution it seems is to add this ‘overflow-y: scroll;’ to the body tag. I have done but does not make a difference.

It seems to happen more going from an inner page to homepage. If anyone can shed any light it would be most appreciated as it’s driving me nuts… :relaxed:

Thanks J

You could add the css below to keep scrolling on and hide the vertical scroll bar:

 body::-webkit-scrollbar{
    display: none;
  }