I have a web page that I'm trying to place 3 div tags in and to make them center correctly. The page is a auto generated html from a psd file created with Photoshop. The html for the page is one table. I have the following code for my div tag:
<DIV STYLE="position:absolute; top:368px; left:162px; width:878px; height:98px; font: Franklin 'Franklin Gothic Demi Cond';"">
<FONT SIZE="4" color="#333333">This is an editable area</FONT>
</DIV>
I will also say that I am using css on this page and had to center the page like this with code:
<table id="Table_01" width="1260" height="811" border="0" cellpadding="0" cellspacing="0" style="margin: 0px auto;">
Because on some browsers the page wasnt aligning properly.
How do I get the additional div tags to align like the rest of the page? I've tried changing the position within the div tag to left and auto and those don't seem to work. Do I have to hand code where the div tag will go?