Vertical Scrollbar., how do you make it go away |
Vertical Scrollbar., how do you make it go away |
Apr 20 2007, 11:15 PM
Post
#1
|
|
|
BrielleJami ![]() ![]() Group: Member Posts: 16 Joined: Mar 2007 Member No: 508,090 |
the main vertical scroll bar on the profile page,
how do you make it not there? i have seen codes to make the horizontal one go away, someone told me to change the "x" to "y" but that didnt work either.. so do you have any ideas? |
|
|
|
![]() |
| *WHIMSICAL 0NE* |
Apr 20 2007, 11:20 PM
Post
#2
|
|
Guest |
Try putting this in your stylesheet:
CODE html {
overflow: auto; } |
|
|
|
Apr 20 2007, 11:25 PM
Post
#3
|
|
|
BrielleJami ![]() ![]() Group: Member Posts: 16 Joined: Mar 2007 Member No: 508,090 |
lol i um.. dont know what a style sheet is..
i just know how to do html... i dont know specific names.. what is it? |
|
|
|
| *WHIMSICAL 0NE* |
Apr 20 2007, 11:29 PM
Post
#4
|
|
Guest |
Try putting it in styletags. So somewhere on your page (whereever you put your codes) put:
CODE <style>html { overflow: auto; }</style> |
|
|
|
Apr 20 2007, 11:37 PM
Post
#5
|
|
|
BrielleJami ![]() ![]() Group: Member Posts: 16 Joined: Mar 2007 Member No: 508,090 |
k i tried it..
scrollbar is still there. |
|
|
|
| *Azarel* |
Apr 21 2007, 01:36 AM
Post
#6
|
|
Guest |
Try:
CODE <style type=text/css>
body {overflow-x: hidden;} </style> |
|
|
|
Apr 21 2007, 12:37 PM
Post
#7
|
|
|
BrielleJami ![]() ![]() Group: Member Posts: 16 Joined: Mar 2007 Member No: 508,090 |
thank you...
that code helped me figure it out.. here is for those looking at this topic with the same problem::: Hide/Remove Main Horizontal Scrollbar: QUOTE <style type=text/css> body {overflow-x: hidden;} </style> Hide/Remove Main Vertical Scrollbar QUOTE <style type=text/css> body {overflow-y: hidden;} </style> I'm glad you figured things out. :) Topic closed. } Azarel This post has been edited by Azarel: Apr 21 2007, 12:57 PM |
|
|
|
![]() ![]() |