i know very well how to make menu with css and ul li . but this clients only needs to add a submenu. so i want to know how we can make a dropdown menu with table, tr, td and images
because i don't want to recreate the menu. because it's a huge site with many pages and client just need a 1 submenu in the main menu . this is a little work for me and i don't want to waste much time on that. i need a quick solution
This is navigation http://farm4.static.flickr.com/3532/3257456250_65b5814eb4_o.png
I want this . i want to show a sub-menu under products menu item anyhow except converting into any css menu http://farm4.static.flickr.com/3490/3257451450_365eed7a9b_o.jpg
I am also looking to add a submenu only to an existing menu for main page at tier1ip.com. Did you ever figure out a solution to this? I'm using basic html with js.
/* CSS /* .dropdown ul {display:none} .dropdown:hover ul {display:block;}
From there on you will need to position your UL using relative positioning. Also you will need a fix for IE6 because it doesn't like :hovers except on a tags. But there are workarounds like http://www.xs4all.nl/~peterned/csshover.html
I hope this helps. If not. You could always use javascript to throw something up on hover.
i have to do this for this sitehttp://www.joannefabrics.com/english/products.asp
it's table based site ,navigation bar made by table.
pls help ASAP
Is it for the navigation? Coz you can get some good free CSS menu templates for free... here is a good tutorial.
http://www.seoconsultants.com/css/menus/tutorial/
this is the code of menu. there is no sub-menu yet. i want to add a sub-menu in any link.
is there any solution with javascript or something else ?
if there is no solution then i will recreat the whole in css, ul,li
This is navigation
http://farm4.static.flickr.com/3532/3257456250_65b5814eb4_o.png
This is the code of navigation made by table
I want this . i want to show a sub-menu under products menu item anyhow except converting into any css menu
http://farm4.static.flickr.com/3490/3257451450_365eed7a9b_o.jpg
Please help ASAP
The <td> that holds the link you want to be a dropdown give it an ID or class of "dropdown"
Next add an UL inside the td tag
<td class="dropdown">
<a>Main Link</a>
<ul>
<li>link 1</li>
<li>link 2</li>
<li>link 3</li>
</ul>
</td>
/* CSS /*
.dropdown ul {display:none}
.dropdown:hover ul {display:block;}
From there on you will need to position your UL using relative positioning. Also you will need a fix for IE6 because it doesn't like :hovers except on a tags. But there are workarounds like http://www.xs4all.nl/~peterned/csshover.html
I hope this helps. If not. You could always use javascript to throw something up on hover.