Web Analytics Made Easy -
StatCounter gettin rid of the horizontal scrollbar - CodingForum

Announcement

Collapse
No announcement yet.

gettin rid of the horizontal scrollbar

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

  • gettin rid of the horizontal scrollbar

    hello...i make websites and on my layouts..i get a horizontal scroll bar..and nothing is their to scroll over to look at..i was wondering if anyone had a javascript or something that i could put in my HTML so it would hide/delete/get rid of the horizontal scroll..ok thanks

  • #2
    <head>
    <style type="text/css">
    body {
    overflow: hidden;
    }
    ........

    Comment


    • #3
      that doesnt help me much... anyone else?
      Last edited by IDontCode; Jul 10, 2002, 11:47 PM.

      Comment


      • #4
        maybe the tableproporties is wrong... really nice site anyways
        ---
        Markus
        .:: WWW.MAJI.TK ::.

        Comment


        • #5
          maybe..but i know their are scripts that will do the trick..i found one to hide the vertical bar awhile ago..i just need one for the horizontal one..can anyone help me out?!? thanks

          Comment


          • #6
            Originally posted by adios
            <head>
            <style type="text/css">
            body {
            overflow: hidden;
            }
            ........
            hey..that hides both bars.."Adios" u got any idea how i just get it to delete the horizontal bar? and leave the vertical alone?

            Comment


            • #7
              body {
              overflow-x: hidden;
              }

              it's notoriously buggy, though. if i were you, i'd do a real thorough check, to see why it's happening in the first place.
              bluemood | devedge | devmo | MS Dev Library | WebMonkey | the Guide

              i am a loser geek, crazy with an evil streak,
              yes i do believe there is a violent thing inside of me.

              Comment


              • #8
                I would ask for a link to your site, but I would bet the content would violate the rules of this board. Like joh6nn suggested, you should really go over you source code and see if you can locate the cause. Could be the width of the image(s) too.

                How about you post a relevant portion of your source code, just be sure to edit out any inappropriate content before posting the code .
                boxer_1
                CodingForum Moderator
                "How did a fool and his money get together in the first place?"

                Comment


                • #9
                  thanks anyway guys...got my answer from a thread just like this one! peace

                  Comment

                  Working...
                  X