Log in

View Full Version : Flex Drop Down Menu Adding More than 1



erikrosey
06-22-2010, 06:55 PM
so I have been trying to use the flex menu for our 'line card' of factories we rep... basically want to have a left menu list... each list will than open up to its own set of links...

for some reason when I do this it will always use the same links for every company we rep...

I do not know how to assign a specific ID to each set...

www.infinitygroupltd.net/index1.html - I reverted back to using a simpler version... but I would really like to use http://www.dynamicdrive.com/dynamicindex1/flexdropdown.htm ---- MENU2... not the Sub menu

I have already messed with all hte settings to get hte BG Color what I want etc...

just need help on specifying what is what...

anyone help?:confused:

erikrosey
06-22-2010, 07:02 PM
just like to add all I really tried to do (which I assumed would work and clearly failed) was to CTRL-C the entire link code and just paste it, change the name to what company I want it as and change the links as necessary, but all that did was pop up the same links for each section no matter what they said!

erikrosey
06-22-2010, 08:32 PM
<p style="text-align:left"><a href="http://www.dynamicdrive.com" data-flexmenu="flexmenu2" data-dir="h" data-offsets="8,0">Company name</a></p>



<!--HTML for Flex Drop Down Menu 2-->
<ul id="flexmenu2" class="flexdropdownmenu">
<li><a href="http://www.dynamicdrive.com/">Dynamic Drive</a></li>
<li><a href="http://www.cssdrive.com">CSS Drive</a></li>
<li><a href="http://www.javascriptkit.com">JavaScript Kit</a></li>
<li><a href="http://www.codingforums.com">Coding Forums</a></li>
<li><a href="http://www.javascriptkit.com/domref/">DOM Reference</a></li>
</ul>

That is the code that I want to copy aka
<p style="text-align:left"><a href="http://www.dynamicdrive.com" data-flexmenu="flexmenu2" data-dir="h" data-offsets="8,0">Company name 1</a></p>

<!--HTML for Flex Drop Down Menu 2-->
<ul id="flexmenu2" class="flexdropdownmenu">
<li><a href="http://www.dynamicdrive.com/">Dynamic Drive</a></li>
<li><a href="http://www.cssdrive.com">CSS Drive</a></li>
<li><a href="http://www.javascriptkit.com">JavaScript Kit</a></li>
<li><a href="http://www.codingforums.com">Coding Forums</a></li>
<li><a href="http://www.javascriptkit.com/domref/">DOM Reference</a></li>
</ul>


<p style="text-align:left"><a href="http://www.dynamicdrive.com" data-flexmenu="flexmenu2" data-dir="h" data-offsets="8,0">Company name 2</a></p>



<!--HTML for Flex Drop Down Menu 2-->
<ul id="flexmenu2" class="flexdropdownmenu">
<li><a href="http://www.dynamicdrive.com/">Dynamic Drive</a></li>
<li><a href="http://www.cssdrive.com">CSS Drive</a></li>
<li><a href="http://www.javascriptkit.com">JavaScript Kit</a></li>
<li><a href="http://www.codingforums.com">Coding Forums</a></li>
<li><a href="http://www.javascriptkit.com/domref/">DOM Reference</a></li>
</ul>



and so on and so on... I tried changing all the links below in CO2 but to no avail!