View Full Version : no scrolling


evalopez
05-06-2003, 06:57 PM
it might be javascript, it might not.

http://www.geocities.com/fearlesstomorrow

I don't want a scrollbar on the main page so it will cover the whole screen. Anyone know how to get rid of it?

Elentari
05-06-2003, 07:50 PM
I'm not sure which scrollbar you're talking about but I did click your site and your chomeless window is huge, it didn't entirely fit on my screen......you might want to make it smaller for people with smaller monitors mebbie? (just a tip)

evalopez
05-06-2003, 07:51 PM
it's not a chromeless window. it's javascript that makes it fill the screen.

Elentari
05-06-2003, 07:58 PM
Ahhhhhhhh...I see. I hate those (no offense) but it's your page and you should do what you like =)

evalopez
05-06-2003, 07:59 PM
there is a [X] in the top right corner, so you can close it!!!

But how DO I get rid of the scrollbar??!

Elentari
05-06-2003, 08:20 PM
I know you have a little X to close it.....I just hate the way that it covers my task bar and the only way I go to other windows is by closing that one or having to ALT + TAB.

About your scrollbar....I don't think you can get rid of it complately but you might want to add some CSS tags to help you out.

If you add height:100%; it should make your page not need a scrollbar because it will always just be 100% of a person's browser......however, it will still show the scrollbar area on the right side and if you want the whole page to be black you might want to make the scrollbars all black with CSS so they don't stand out?

<style type="text/css">
<!--
body {
height:100%;
}
-->
</style>

That code goes between the head tags and so would the scrollbar colours that you can generate at the following link....

http://www.nutrocker.co.uk/scrollbarcolor.html

amicus
05-06-2003, 08:35 PM
not sure why you'd want to remove your scrollbars but here it is:
<BODY SCROLL="no">

evalopez
05-06-2003, 08:42 PM
looking back at my code,

i had scrolling="no"

that's why it didn't work! thanks!