December 23rd, 2013, 08:58 PM
-
Menu Help
I have a drop down menu but I want to change it so that it does a bit diffferent.
Currently I have: Sample
logon programs contact
seniors
family
juniors
I want the drop down to be more like
logon programs contact
seniors family juniors
Anyhelp in the direction where to go and accomplish would help
December 23rd, 2013, 09:22 PM
-
Fixed it for you:
Code:
+--------------------------+
| logon programs contact |
+--------------------------+
| seniors family juniors |
+--------------------------+
December 24th, 2013, 06:25 AM
-
Menu Help
here is my current program menu
[PHPNET]<div class="menu" align="center">
<ul valign="top">
<li><a href="logon.php" >Logon</a></li>
<li><a href="#" id="About">About</a>
<ul>
<li><a href="about.php">History</a></li>
<li><a href=" volunteer.php">Volunteer</a></li>
<li><a href=" faq.php">F.A.Q.</a></li>
<li><a href=" faith.php">Faith</a></li>
<li><a href=" donate.php">Donations</a></li>
<li><a href=" contact.php">Contact</a></li>
</ul>
</li>
<li><a href="#" id="program">Programs</a>
<ul>
<li><a href=" foodpantry.php">Food Pantry</a></li>
<li><a href=" homelessConnect.php">Homeless Connection</a></li>
<li><a href=" immigrantsvc.php">Immigration Services</a></li>
</ul>
</li>
<li><a href=" map.php">Locations</a></li>
<li><a href="#" id="child">Child Care</a>
<ul>
<li><a href=" CCInfo.php">Child Care Information</a></li>
<li><a href=" wesley.php">Wesley </a></li>
<li><a href=" mitchell.php">Mitchell Woods</a></li>
</ul>
</li>
<li><a href="signup.html">Forms</a></li>
</ul>
</div>
[/PHPNET]
What I want to do is instead of a standard drop down I want when you put mouse over the field that all those drop downs be listed in a row below the actual menu
December 24th, 2013, 06:50 AM
-
"For if leisure and security were enjoyed by all alike, the great mass of human beings who are normally stupefied by poverty would become literate and would learn to think for themselves; and when once they had done this, they would sooner or later realise that the privileged minority had no function and they would sweep it away"
- George Orwell, 1984
December 24th, 2013, 08:12 AM
-
Originally Posted by badger_fruit
You want jQuery then
Thanks I'll give that a try......