Page 1 of 1
No shadow preview in IE9 !?
Posted: Fri Feb 15, 2013 1:57 pm
by Sam
No shadow preview of my menu in ie9, but ok in FF and GC
Why ?
Thanks for replying
Re: No shadow preview in IE9 !?
Posted: Fri Feb 15, 2013 3:52 pm
by Aivars
It's possible that the page that you've inserted menu in doesn't use DOCTYPE and is automatically switching to Internet Explorer 6 mode, which is why there are no shadows. Read this for more info:
http://www.easymenumaker.com/support-answer.php?tid=116
Re: No shadow preview in IE9 !?
Posted: Tue Feb 19, 2013 10:42 am
by Sam
Thanks for reply
I found why it does not function correctly in IE9
I ve a table tag around in my html code like so :
<table>
< My menu tags with css classes >
</table>
If I remove table tag the shadow appear in IE9
But I would like to use my table tag around my menu
Any solutions ??
Re: No shadow preview in IE9 !?
Posted: Tue Feb 19, 2013 10:56 am
by Aivars
Are you using just <table> or complete proper <table><tr><td>?
Re: No shadow preview in IE9 !?
Posted: Tue Feb 19, 2013 11:40 am
by Sam
Yes of course, i m using <table><tr><td>
Re: No shadow preview in IE9 !?
Posted: Tue Feb 19, 2013 12:02 pm
by Sam
I can't give the url of my site because i ve not published it yet but this site is facing exactely the same problem
http://www.vp-glasgow.co.uk/news.htm.
Thanks for checking
Re: No shadow preview in IE9 !?
Posted: Tue Feb 19, 2013 12:16 pm
by Aivars
That site has the DOCTYPE problem that I mentioned.
Nonetheless, after some research it turns out that there is IE9 bug that indeed removes shadows from elements inside table cells -
http://www.west-wind.com/weblog/posts/2 ... able-Cells
The solution is simple, but unfortunately you'll need to edit CSS file manually - find the line with box-shadow:... and add another attribute after it like this:
{
box-shadow: .....;
border-collapse: separate;
}
We'll add a fix to do this automatically in one of the next updates.
Re: No shadow preview in IE9 !? "Corrected"
Posted: Tue Feb 19, 2013 2:47 pm
by Sam
Correct, my menu shadows appears nicely in IE9 !
Thanks a lot