Disappearing SharePoint Scrollbar in Chrome Browser
- October 2nd, 2012
- Posted in SharePoint
- Write comment
In some cases, usually after making customization to various code in a SharePoint masterpage, the scrollbar may disappear on SharePoint sites in Chrome.
To fix, look for the following code:
<body scroll="no" onload="if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();" class="v4master">
Replace that line with the following line:
<body scroll="no" class="v4master"> <script type="text/javascript">$(document).ready(function() {if (typeof(_spBodyOnLoadWrapper) != 'undefined') {_spBodyOnLoadWrapper();} });</script>
That's it!
Original Source:
http://blog.creative-sharepoint.com/2012/02/sharepoint-2010-2-simple-steps-to-fixing-scrollbar-issue-in-google-chrome/
Note: this appears to disable features in the ribbon. Work in progress issue…
No comments yet.