You have some css validation problems. If you fix them, you might be okay, especially since one is a div problem.
My gallery displays fine in FF but not in IE. In IE, the gallery is deported to the left of the screen, and a bit downward. Here’s the link to the page:
http://raphaella.co.kr/blog/wp-content/plugins/fgallery/fim_photos.php?album=perla
The validator finds just one problem, and I don’t understand it. Could someone tell me what the error is about and if it could solve the display problem in IE?
Here’s the validator result for that page:
http://validator.w3.org/check?uri=http%3A%2F%2Fraphaella.co.kr%2Fblog%2Fwp-content%2Fplugins%2Ffgallery%2Ffim_photos.php%3Falbum%3Dperla&charset=%28detect+automatically%29&doctype=Inline&ss=1
The validator says:
Error Line 3, column 0: character “” not allowed in prolog .
���<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3
Thank you very much
The reason your layout has shifted in IE is because of the invalid character in your DOCTYPE. It has caused IE to go into “quirks” mode, which means it’s defaulting to pre-XHTML “standards” (which are not standard at all).
It also doesn’t help that you’re using deprecated tags in your HTML output. This is a major reason why your page isn’t validating.