submenu font different than main menu only in IE 8

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
wpatters1229
Super Advanced
Super Advanced
Posts: 90
Joined: Thu May 30, 2002 7:35 pm

submenu font different than main menu only in IE 8

Post by wpatters1229 »

I just noticed that in IE v8 that my submenus have a bolder and blurry font than my main menu text. It is only in IE 8. This did not show in IE 7 or below or FF or OPera or Safari. Any idea why this might be?
wpatters1229
Super Advanced
Super Advanced
Posts: 90
Joined: Thu May 30, 2002 7:35 pm

Re: submenu font different than main menu only in IE 8

Post by wpatters1229 »

Apparently the shadow attribute not only does a shadow behind the box that the menu is in but also the text inside of the box but only in IE. I liked the affect but had to remove it since it only works in IE and makes the font very ugly.

Thanks
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Re: submenu font different than main menu only in IE 8

Post by Ruth »

Hi,

Well, all the filters and transitions attributes are IE only since they are from Microsoft Filters and Transitions and run from the ? activeX thing. If you want to see them there is an interactive demo so you can play around http://support.milonic.com/demos/filters/index.htm

Now, as to your menu, I am not seeing what you are seeing when I test your page with the shadow still set. I use browsershot.org and the text looks fine. Do you have something set on your OS, effects or something?

Also, your data files look as if they were converted from version 3? If that is the case, you need to remove this part at the top. That is how it was in 3, but in 5 those effects are done with the overfilter and outfilter code.

Code: Select all

if(navigator.appVersion.indexOf("MSIE 6.0")>0)
{
effect="Fade(duration=0.2);Alpha(style=0,opacity=98);Shadow(color='#777777', Direction=135, Strength=5)"
}
else
{
effect="Shadow(color='#777777', Direction=135, Strength=5)"
}
And, you need to check your data files, because they look as if they have double ; in places not where you have the n b sp; coded but it looks like in most places just before the status=

As to status, that's a waste of time coding since the browsers no longer support that. It became a phising issue, so Milonic removed that ability from the menu. It doesn't do anything being there, but there's no sense in coding it since it does nothing :)

Ruth
wpatters1229
Super Advanced
Super Advanced
Posts: 90
Joined: Thu May 30, 2002 7:35 pm

Re: submenu font different than main menu only in IE 8

Post by wpatters1229 »

Yes it has gone through many transistions over the years and I basically have just not messed with it as long as it works. The problem may be more with ie 8 than anything else since even the milonic drop down menus have started looking faded and blurry while the main top level menus look fine.
I do not think now that it is anything in my code as much as the browser since all other browsers opera, ff, safari look fine.

Good to know about the status thing and will go thru and clean up the double commas.
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Re: submenu font different than main menu only in IE 8

Post by Ruth »

Hi,

But that is what I don't understand. Here is a screenshot of your menu with a submenu open in IE8.

Image

As you can see there is no shadow on the text. It's why I wondered if it is some setting on your browser, probably under internet options advanced. Anyway, just trying to check it since I can't see the problem in the screenshot.

Ruth
Post Reply