Hello,
I've been designing a graphic to be behind a form. So I figure the best way to do this is to make a table, use a background image for a cell and then put the form inside that. That has all worked fine I just wanted it to be in the middle as well so I used Valign="middle" . This works fine in FireFox but in IE the select form is still sitting at the top of the cell.
Thanks for any help.
Edit:
Here's the entire table:
The valign bit is marked with *******
I've been designing a graphic to be behind a form. So I figure the best way to do this is to make a table, use a background image for a cell and then put the form inside that. That has all worked fine I just wanted it to be in the middle as well so I used Valign="middle" . This works fine in FireFox but in IE the select form is still sitting at the top of the cell.
Thanks for any help.
Edit:
Here's the entire table:
Code:
<table cellpadding="0" cellspacing="0" width="300px">
<tr><td height="60px"><a href="<? echo "$create_link"; ?>" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('create','','images/layout/create_o.gif',1)"><img src="images/layout/create.gif" name="create" width="310" height="55" border="0" id="create" alt="" /></a></td></tr>
<tr><td height="60px"><a href="///" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('browse','','images/layout/browse_o.gif',1)"><img src="images/layout/browse.gif" name="browse" width="310" height="55" border="0" id="browse" alt="" /></a></td></tr>
<tr>********<td valign="middle" class="select"><form action="#" method="post"> <select><option name="select" value="select">Specify your search...</option><option name="2D_Graphic_Designers">2D Graphic Designers</option><option name="2D_Graphic_Artists">2D Graphic Artists</option><option name="3D_Graphic_Designers">3D Graphic Designers</option><option name="3D_Graphic_Artists">3D Graphic Artists</option><option name="Website_Coders">Website Designers</option><option name="Website Coders">Website Coders</option><option name="Animators">Animators</option><option name="Programmers">Programmers</option></select> <input type="submit" value="Go" /></form></td></tr>
</table>
Comment