Milonic provide full featured pull down web menus for some of the worlds largest companies
click here to see what it can do for you

Download Milonic DHTML Menu
Buy Milonic DHTML Menu

Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:05

Mac Alignment Problem


Poster: deiffert
Dated: Tuesday May 16 2006 - 20:50:49 BST

Hello,
For some reason the menu i'm working on isn't aligning correctly on macs (I've tested IE and Safari on Mac on 2 different computers) it seems like the font is bolder or something so it bleeds out of it's area.

http://www.baillios.com/beta

Milonic Folder: http://baillios.com/beta/ssi/milonic/
Menu Data File: http://baillios.com/beta/ssi/milonic/menu_data.js

Any help would be great. Thanks so much, :)
- David

Got It


Poster: deiffert
Dated: Thursday May 18 2006 - 16:51:44 BST

Just wanted to let everyone know that I got it.
It was a problem with mac displaying font sizes differently.
WHat I did was edit the menu_data.js script with the following:

Replace the standard

fontsize="xxx";

with

if (navigator.appVersion.indexOf("Mac")!=-1) {fontsize="xxx";}
else {fontsize="xxx";}


Seems to work ok now. 8O


Poster: Andy
Dated: Wednesday May 31 2006 - 19:16:44 BST

Good old IE for the Mac, it's a lovely browser, always a pleasure to work with.....NOT!!!

Glad you got it sorted :D


Poster: Andy
Dated: Wednesday May 31 2006 - 19:17:55 BST

Also, you could have used the following code:

Code:
fontsize="xxx";
if (mac)fontsize="xxx";


It's much cleaner