| re: Horizontal Subcategory Menu
In article <XEIub.7138$ow5.111@bignews2.bellsouth.net>,
"Maria Gonzalez" <mariapgo@bellsouth.net> wrote:
[color=blue]
> Hello,
>
> I would like to know if it is possible to create a Navigational Menu that
> has all the Major Categories on top row, then when a mouse is over it, the
> bottom row appears with sublinks but not like a list vertically. I want it
> to show up horizontally across that bottom row and still keep the top
> Category highlighted.
>
> Does anyone know where I can find a script for something like this? Is it
> possible to do with javascript?
>
> Any help would be greatly appreciated.
>
> Thanks,
> Maria
>
>[/color]
Most menu scripts put the submenu in a <div> block with a style
declaration that sets its location. That's the location of the whole
block. So
<div class="submenu">
Item<br>
Item<br>
Item<br>
Item<br>
</div>
gives you a vertical menu and
<div class="submenu">
Item Item Item It em
</div>
gives you a horizontal one. |