Link to home
Start Free TrialLog in
Avatar of Michael Sterling
Michael SterlingFlag for United States of America

asked on

How can I calculate and set the width of my child "flare" out menus"?

I've got a main menu for my site that is being build using a menu adapter class that basically builds the menu and it's children menus based on giving the menu a certain class name. The menu items are pulled from a database, the so the items can and will vary in their length. Presently the only way to make sure that all the menu items, (sub, sub-sub etc...) show up on a single line is to "eye ball" the longest item (in fire bug) and then set the with (static) within the CSS that holds the hook for that particular sub menu. This is fine, accept that it makes some of the sub menus much wider than they have to be, simply because the min-width has to be set to longest menu item. I was wondering if there is a way to calculate the with for the menus (and sub menus) based on the length of the items within them? maybe using jQuery or something? Just curious....
Avatar of dwkd
dwkd
Flag of United States of America image

what you refer to as 'menu item' pulled from the database is simple writeup text? code?
does width:auto not stretch the container to the length of the content?
Avatar of Michael Sterling

ASKER

@dwkd: what i mean is, is that, there is an administrative section to the site where you can add items to the naviagation, (the main menu items, sub menu items etc.) for some reason auto does not make the menus the desired with. in most cases it makes the menus too thin...
that means the children are floating or positioned in a way that the parent can't register them
 
ok, so i probably will have to hard code a static width for each sub-menu that will accommodate the longest menu item for that sub-menu...
i'd find a way to get rid of the floating/positioning of the children and make it elegant and not have to hard code.
remember, you can position stuff around with the help of margins,paddings,textaligns etc.. there are a bunch of css hacks and tricks
bottom line is not to hard code coz search engines will penalize the style="asdasd" hardcoded on the main html element
thats my 2cents
i appreciate it. i know the following link is a couple years old, but do you think it still holds true? (what the last post says)...

http://stackoverflow.com/questions/999061/css-dynamic-width-on-menu
word wrap is a direct offect of defining a width to the container
if you don't have a width parameter in your css or if you have it as auto then there's no word wrap.
what the answer in that stackoverflow post is saying is that in order to fit as many menu items as you want in, let's say, 800px, you must make it a table because the menu items(table cells) are evenly distributed inside the table ..and this is done automatically by the browsing so you don't need to calculate the widths with js and all that.  ..But, do you think this relates to your post? I don't think displaying as table-cell helps you
by the way, do you  have any link to your test page where you're building all this?
this link helped quite a bit.

http://labs.adobe.com/technologies/spry/samples/menubar/AutoWidthHorizontalMenuBarSample.html

bunzl.dev.lagoon.com (currently best viewed in firefox, working on IE 8 / 7). i used the tips in the link above to get the menu widths to auto size correctly in firefox, now i'm working on the issues that are popping up in IE 8 / 7.
nice tut
looks fine in ie8
are you have any other issues?
yes, in IE7 my sub menus are showing horizontal instead of vertical. any ideas?
i dont have ie7 ..
can u add <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> so i can see?
try it now...
ASKER CERTIFIED SOLUTION
Avatar of dwkd
dwkd
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
right...i'm thinking that may be my only option...
thanks
you could now add a js function on dom ready that says something like:
function SetMenuWidths(){
   document.getElementById('ctl00_mnuMain').getElementsByTagName('ul')[0].style.width = "150px";
   document.getElementById('ctl00_mnuMain').getElementsByTagName('ul')[1].style.width = "200px";
   document.getElementById('ctl00_mnuMain').getElementsByTagName('ul')[2].style.width = "100px";
   .
   .
   .
   etc...
}

take care