PDA

Click to See Complete Forum and Search --> : Menu Imagemap w/ sub-menu?


reuber1
11-17-2006, 06:43 PM
Is it possible to create a navigational menu from an imagemap that has submenus? It doesn't have to be one large image, it could even be the image sliced up the good'ol' fashioned crappy way, but I need it to have a submenu kick out to the right of it. This is what the client wants and I'm not sure how else to do it being that I already have a CSS menu on the top, so my <li>s and <ul>s have already been taken, but I need a vertical nav on the left to match his design, but I don't know how I can go about this without using CSS, which I can't now. :mad:

Hell, just a link that will show me how.

resdog
11-17-2006, 07:35 PM
Why can't you use CSS? Just add ID's to the new list, and call them that way. Like wrap them in <div id="vertnav">, then your CSS would be "vertnav li {**};" and so forth.

reuber1
11-17-2006, 08:09 PM
I already have a list using CSS though, so the <LI>s and <UL>s have already been taken. Unless there's something I'm missing and the site will recognize different <LI>s and <UL>s that are under a different class. I was under the impression that I couldn't.

SurfPark
11-17-2006, 08:48 PM
Well you could give your lists a class lable then use two different kinds of lists.

reuber1
11-17-2006, 09:06 PM
I'll have to try that. That's why I was stumped, I didn't think you could do that at all.

resdog
11-17-2006, 09:06 PM
Oh, yeah, you can do that. You can have several menus using CSS and <Li> and <UL>

Just like you can have this:

h1 { color:#f00;}
#finder h1 {color:#0f0;}

so the same can be said for lists:

#heavenNav li {
...code here....
}

#hellNav li {
...different code...

reuber1
11-18-2006, 01:04 AM
I was personally thinking purgatoryNavi, but those work too. :D