Click to See Complete Forum and Search --> : Center Tag Grrrrrrrrr


skeddles
02-07-2007, 07:43 PM
http://www.freewebs.com/magicaltrevorshrine/gallery.htm 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.

HookedOnWinter
02-07-2007, 08:52 PM
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..

aj_nsc
02-08-2007, 06:46 AM
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 problem

flameruler13
03-02-2007, 08:49 PM
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 problem


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

oops! still logged onto my friends account! oh well, same person

WebJoel
03-03-2007, 02:03 PM
Start 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">