Drop down not working with IE 8

please look at www.oceanviewguesthouse.co.uk

can anyone tell me why the menu drop down options appear to be hidden inIE8
they appear fine in IE 7

thanks

Hi,

it’s probably the default top margin on the ul but you seem to have commented out that most important bit.


/* Drop Down Menu 
    #dropdown, #dropdown ul { padding:0px; margin:0px; list-style:none; } /* all lists */


Remove the comments from above.

It looks as though you should be floating the inner elements also but you have also commented them out which is why the display is broken.


[B]*/ [/B] #dropdown a, #dropdown a span {
display:block!important;
float:left;
position:relative;
}


Remove the starting comment.