Center Tag Grrrrrrrrr

admin

Administrator
Staff member
<!-- m --><a class="postlink" href="http://www.freewebs.com/magicaltrevorshrine/gallery.htm">http://www.freewebs.com/magicaltrevorshrine/gallery.htm</a><!-- m --> heres my website.

for some reason, the buttons on the left are centered in Mozilla Firefox, but not in Internet Explorer.

any ideas why? or how to fix?

feel free to veiw source code.you can try getting rid of the <center> </center> tags and putting it all in a div:


<div style="text-align:center;">
your content
</div>


that is one way that might work..stick with html for now, unless you want to move into CSS and divs, and all the rest, just add align="center" to your td tag so now it becomes

<td width="1" bgcolor="#9ECF08" valign="TOP" align="center">

that should solve your problemstick with html for now, unless you want to move into CSS and divs, and all the rest, just add align="center" to your td tag so now it becomes

<td width="1" bgcolor="#9ECF08" valign="TOP" align="center">

that should solve your problem


i tried that , and still. it works in FF, but not IE

oops! still logged onto my friends account! oh well, same personStart with a valid !doctype. You have nothing now, so IE is in 'quirks mode', -it is trying but failing to understand the code. At the very least, try this:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
 
Back
Top