View Single Post
  #7 (permalink)  
Old Dec 2nd, 2007, 20:45
Corey Bryant Corey Bryant is offline
SuperMember

SuperMember
Join Date: Aug 2003
Location: Castle Rock, CO
Age: 36
Posts: 163
Thanks: 0
Thanked 0 Times in 0 Posts
Re: how to center webpage

Center a Website in FrontPage offers basic solution if you need to still rely on tables. You have
Code: Select all
                 <div align="center">



                        </div>
but this closing divide should be at the end of your code. Right now you have
Code: Select all
</table></table>

</form>
So add the </div> there instead. But you should look over your code as well some because you elements are not closed properly
Reply With Quote