1

Topic: Why is Internet Explorer ignorning my alignment?

I have a small photo gallery script that i wrote. For some reason IE has chosen to ignore my align="center" on the index page. The page works fine in firefox, you can see the results here

Anyone know why it would be doing this? What about a workaround?

2

Re: Why is Internet Explorer ignorning my alignment?

I just answered my own question, it wasn't a problem with the alignment tag at all, it was a problem with this:

$cell_width = "100/$cols" . '%';

should have been

$cell_width = 100/$cols . '%';