XF 1.3 Strange behaviour of body-overflow in XF...

  • Thread starter Thread starter Deleted member 55687
  • Start date Start date
D

Deleted member 55687

Guest
Does anyone have an idea why this code
Code:
body {overflow:hidden;}
removes the scrollbars on nearly every webpage but not on pages running XF?

Example: youtube.com

003.webp

Example: xenforo.com


005.webp
 
problem solved as in
Code:
/*
* XenForo Core CSS
*
*/

html
{
    background-color: rgb(0, 0, 0);
    overflow-y: scroll !important;
}

dont know exactly why...
 
Top Bottom