Re: Menu bar width
2005/04/27 10:27
Viewed 10963 times
Replies: 1/1

Well, the menu toplevel parent element is a DIV and as such, it occupies 100% of the available horizontal space. However, you have several options:

(1) Add the following in some CSS section:

div.dynarch-horiz-menu {
float: left;
}

This will make the menubar float at the left; you can try “float: right” too.

(2) Embed the menu in some table element and size accordingly the cell that contains the menu.  Normally you should be able to undersize it (say 1em) and it will scale to the minimum size required for the menu to fit.  But beware Internet Explorer (5.x I think) might break spaces in menu labels in this case, use “ ” or add “white-space: nowrap” in that table's style attribute.

Hope this helps.

Re[2]: Menu bar width
2005/04/28 23:05
Viewed 13133 times
Replies: 0/0

Great, that worked perfectly!

last
Google