Forum Moderators: open

Message Too Old, No Replies

Is there a way to trim the scrollbar to the last word on your page

         

midi25

9:12 pm on Jul 3, 2002 (gmt 0)

10+ Year Member



Hi i have got a problem. I,ve made my page and it fits in my browser fine. the only problem is the scrollbar has a bit of excess. When u scroll it down all u git is an horrible blank gap. In Golive you can optimise your page. It takes up the bottom and side excesses so your page fits exact to how you designed it leaving no gaps. I am using DW now. Can it be done in this? Or is there a comment i can put in my page to do it. Thanks

Nick_W

9:16 pm on Jul 3, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I'd be very worried and a little suspicious of those kind of 'features'.

What if your users are using a smaller/bigger browser window? What if it's the same but there are toolbars taking up extra space?

Liquid design! Make your page fit all sizes, there is no way of eleminating scrollbars etc because there is no way to predict what your susers will be using.

Nick

midi25

9:48 pm on Jul 3, 2002 (gmt 0)

10+ Year Member



hi dont worry guys gonna start again in the morning i,ve messed up somewhere

thanks

Reflect

1:30 pm on Jul 5, 2002 (gmt 0)

10+ Year Member



Hi,

This is what I use to remove all "excess" from all page borders...

leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"

I just insert it in teh <body> tag.

Brian

bill

11:49 pm on Jul 5, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



...or you could use CSS:
body {
margin:0;
padding:0;
}