Web Analytics Made Easy -
StatCounter hidden scrollbar in full screen mode (IE) - CodingForum

Announcement

Collapse
No announcement yet.

hidden scrollbar in full screen mode (IE)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • hidden scrollbar in full screen mode (IE)

    I've been knocking myself out trying to get this straight. I'm trying to dynamically set a page to fullscreen, and at the same time hide the useless scrollbar taking up space on the right hand side. example: www.thegarden.it and www.fishouse.net I've discovered a few different ways in jscript and css (w/ and w/o frames), but i can't get any of them to work for me. If anyone out there has a solution, I would really appreciate it.

  • #2
    Try CSS

    body {overflow: hidden}
    KOR
    Offshore programming
    -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

    Comment


    • #3
      Scrollbars are created with a purpose. They are not useless. I don't recommend hiding them but if you insist, here it is:

      <body scroll="no">

      Be aware of its consequences. It will annoy majority of users and leave your site and never come back again.
      Glenn
      vBulletin Mods That Rock!

      Comment


      • #4
        thanks for the response

        for some reason the css just won't work (i know i'm probably missing something simpe)... the 'body scroll=no' works fine, but doesn't work in netscape ( i know my original question said ie)... but anyway, thanks for the input and i'll post a link when i'm done so you guys can let me know if it was worth the trouble.

        Comment


        • #5
          the CSS should work:

          <head>
          <style type="text/css">
          <!--
          body {overflow: hidden;}
          -->
          </style>
          </head>
          KOR
          Offshore programming
          -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

          Comment

          Working...
          X