No typo. The code I posted was copied and pasted.
-Dorian
That really seem to be something with your CSS. The Wayfinder-call like yours is generating an <UL>-<LI>-list witch normally goes vertical. You can use
#something or .something {list-style-type:none;}
#something or .something li {float:left;} in your CSS to make it horisontal.
I think, thererfor I am! But what I am, and why...?
Correct. I have already done that part. It displays horizontally the way that I want it, however it will not display inside the div that I want.
-Dorian
Can you post the peace of CSS that covers the menu and the menu-outer-DIV? And the generated HTML for the menu, included the DIV. It’s better to see what’s going on then.
I think, thererfor I am! But what I am, and why...?
The class="active" is given by Wayfinder for you to style the active menu-element the way you want.
The same with the class="last", if you want to style the last menu-element in another way than the others.
I have seen your div-problem before, and I will test your code and hopefully come up with a suggestion later this day (if not other come first ofcourse).
I think, thererfor I am! But what I am, and why...?
Hi,
first of all give the ul a margin/padding of 0. Then (if possible) assign a height to the div. Or you have to put in an overflow: hidden, but this might screw up IE6 so vou have to assign
overflow: hidden !important;
overflow: visible;
This should work.