Problem in IE9

Hi every body …

I need an urgent help to fix the attach menu …

it work without problem in FF and Chrom. but in IE is not working :eek:

I will be thanks full for any help

You don’t have a valid current doctype so IE9 reverts to quirks mode and behaves much like IE5 and thus doesn’t understand most of the css devised this century.

The very least doctype you should be using is:


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

But these days you really should use a strict doctype (but then you’d need to take care with your code as you have mixed case and missing quotes on all your attributes).