Yes, 100% is what it's set at.
One recommendation of mine, would be to have the header of the "Services" and "Contact Us" pages be 'inline' with the body text.
On lower resolutions (800x600, 1024x768) it looks fine. But, since it's actuall in two columns, it splits when you get over those two resolutions, and just doesn't look as nice.
It's a simple fix too... Here's what you do:
Current Code:
Code:
<table border="0" width="100%" id="table1">
<tr>
<td colspan="2"> <p>
<font face="Arial" size="6" color="#074F82">Services</font></td>
</tr>
<tr>
<td> </td>
<td width="904">
Fixed Code:
Code:
<table border="0" width="100%" id="table1">
<tr>
<td colspan="2"> <p>
<center><font face="Arial" size="6" color="#074F82">Services</font></center></td>
</tr>
<tr>
<td> </td>
<td width="904">
Notice the <center > codes. That will center the "Services" text, instead of leaving it stranded over on the top left, while the body text moves to the right farther and farther with higher resolutions.
The actual problem is that the main body text tables seem to be aligned to the right. I couldn't see any quick fixes for that, as I don't have a lot of time to delve through the code, but if you could make it so it's either left aligned, or centered, it would make for a better web page.
HTH,
Dave