How to fix display:inline-block; on IE6 ?
My html Page http://www.faressoft.org/tutorialTools/slideShow/
can I get the same result in ot
You have to re-specify display:inline; on block level elements in your IE style sheets.
HTML:
blah
REGULAR CSS:
.ImageSlideShow { display:inline-block; }
IE CSS:
See: http://work.arounds.org/using-inline-block-ie7-and-ie6/
BONUS:
You should also specify display:inline; for .ImageSlideShow .ImageNum {} to alleviate another IE bug.