This content has been marked as final.
Show 3 replies
-
1. Re: Same CSS but slightly wider layout
Ken Binney Oct 15, 2012 12:35 PM (in response to FormUser)Your horizontal scrollbar on longer pages acts to widen them.
Force a scrollbar on all pages with CSS
html, body {
height: 100%;
margin: 0 0 1px;
padding: 0;
}
-
2. Re: Same CSS but slightly wider layout
Nancy O. Oct 15, 2012 12:36 PM (in response to Ken Binney)To force a vertical scrollbar channel to appear on short and long pages, add this to your CSS code:
html {overflow-y:scroll}
Nancy O.
-
3. Re: Same CSS but slightly wider layout
FormUser Oct 16, 2012 12:06 AM (in response to Nancy O.)Thanks to Ken, and especially to Nancy, it works!



