I apologize, I gave you bad advice before. I didn't realize you had used html Frames, I agree, you should get rid of the frames. You can replace it with the same effect by using CSS overflow.
The CSS would look something like this:
Code:
.textarea
{
overflow:scroll;
}
Then your HTML would look like this:
HTML Code:
<div class="textarea">
Your text or other info here.
</div>
Also, the HTML is riddled with tables, which not suggested for page layout. You can do much more using CSS and XHTML.
The page is 1024 pix wide because of the following tag:
HTML Code:
<img src="images/index_01.gif" width=1024 height=27 alt="">
This is the first <img> tag in your html. So it should be easy to spot.
You could actually do away with this line, it causes your page to be 1024 pix wide, and it is an empty image.
I hope this helps you out some.
|