Connecting Tech Pros Worldwide Help | Site Map

Horizontal Subcategory Menu

Maria Gonzalez
Guest
 
Posts: n/a
#1: Jul 20 '05
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


Bill
Guest
 
Posts: n/a
#2: Jul 20 '05

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&nbsp;&nbsp;Item&nbsp;&nbsp;Item&nbsp;&nbsp;It em&nbsp;&nbsp;
</div>

gives you a horizontal one.
Closed Thread