|
There's all this empty space at the top. I guess it's the search box that's pushing everything down. If your using tables, then you should place that search box even with the top nav.
The font is too small. I would raise it up a notch. I've seen personal pages and blogs with tiny fonts, but this is a mainstream type of page, so go with normal font sizes, like on major websites.
Not crazy about that horizonal scroll bar at the bottom of the page. I viewd the site at 800x600 and also at 1024x768. At 800x600 there was the annoying scrollbar. At 1024x768 everything was over to the left, with empty space on the sides.
Instead of:
<body>
<table width="850" border="0" cellspacing="0" cellpadding="0">
Use this:
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0">
This will make the table adjust itself to each user, regardless of their screen resolution, and it will center it, so it won't lay over to the left.
|