You only need to allow 20 pixels for the scroll bar if you chose to use a table to hold the content in home.htm.
Is there a way to disable the horizontal scrollbar? I have tried making my home.htm table 2 pixels smaller, but still not much luck. I’m searching google at the moment with not much luck either :-\ thanks
There’s no way to disable just the horizontal scroll. Both are controlled by the one attribute (yes, no,auto).
Let me look at your home.htm again, I can probably find what is making it go beyond the available pixel width.
Here it is…I hope you can find whats wrong
in home.htm
- set the table width to 345 (365-20)
- remove the width attribute from the cell containing the text.
- remove the other 20 pixel wide cell completely.
- in the BODY tag set the page margins to zero (leftmargin=“0” topmargin=“0” marginwidth=“0” marginheight=“0”)
- if you find you need a little white space at the edge of the text, increase the cellpadding attribute in the TABLE tag.
(aha, this answers my question that I made a new thread for)
thank you abzoid it works perfecty!!!