Yep, but... you might wanna make sure and wait for someone else here to confirm this as I am unsure of myself. Better yet, why don't you give a call to the iPage guys because they can answer you better...
I could, just takes a long time, even on dsl, my god what a jumble of code.
Sorry, i've messed around with it for a while but there is just too much code man!!.
The way I may have done it, instead of having all borders separate images make them one image, put as background of a div, then you can insert the left hand image into it (make div same size as background image), do the same with the right hand borders, make one image, put as the background to a div, set the display to inline for the divs and they will sit flush side by side. (in the right div you can add in your text) use padding-left:npx; to move things over..
Ie:.
<td>.
<div style="background:url(all-borders-in-one-image.jpg);display:inline;width:npx;height:npx;">.
<img src="silver_sm.jpg"></div>.
<div style="background:url(all-borders-in-one-image-right.jpg);display:inline;width:npx;height:npx">names etc -up*</div>.
</td>.
*you could nest you table with the text here...
This needs a lot of work, but is possible to fix. Many of the errors are actually the same error repeated over and over again in many places..
Fifty errors can be solved simply by using.
Find and Replace.
To Find every.
&.
In the document and replace every one with.
&amp;.
Instead..
See the list at:.
Http://validator.w3.org/check?uri=ht...sp=1&verbose=1.
This code is not valid:.
<p></td></tr></font>.
You must close the font.
Inside.
The.
Td.
, not outside. The.
<p>.
Is wrong too. Why open a paragraph, just before the end of the table data? Remove it..
Fix that stuff, and there will be only a few left...
Is there software that will fix a lot of those errors? When I joined the project the code was a mess. Its a few sets of pages that are using server side includes. The code is garbled because the previous dudes used a combination of dreamweaver, homesite, and frontpage with some self edited notepad work in there. Each guy would make a section and then upload it then the next guy would etc. etc. Anyway if there’s a program that would make that fix way faster that would be cool...
In your text editor, say.
Wordpad.
, simply use the.
Find and Replace.
Function to Find every.
&.
And Replace with.
&amp;.
Instead..
Same for the other code, Find.
<p></td></tr></font>.
And Replace with.
</font></td></tr>.
Instead...
Hey leo if I set it up like that first how do I move my silver_sm.jpg image over to fit inside the black square in the background image and second the right side is really on the bottom not the right they are above and below not left and right. how do I fix that also. also is there a better way to do this?..

