Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I am not 100% sure if your asking how to make the id menu have a menu functionality or just a sub menu for your main nav.</p> <p>If it is pertaining to a sub menu for your main nav then this will work just fine. If it's for the mobile menu then let me know and I'll work something out for you. (SOLVED) </p> <p>This fiddle has the sub menu working while still being responsive the entire time. You can style it to your needs but it is a solid start.</p> <pre><code>nav ul li ul { display: none; position: absolute; width: 100%; top: 100%; background: #000; color: #fff; } nav ul li:hover ul { display: block; } nav ul li ul li { display: block; -webkit-transition: .6s ease; -moz-transition: .6s ease; -ms-transition: .6s ease; -o-transition: .6s ease; } nav ul li ul li:hover { background: #c1c1c1; color: #2b2b2b; } </code></pre> <p><strong><a href="http://jsfiddle.net/EYjnG/2/" rel="nofollow">JSFIDDLE</a></strong></p> <p><strong><a href="http://jsfiddle.net/EYjnG/3/" rel="nofollow">JSFIDDLE with relative sized sub menu</a></strong></p> <p>Here is the mobile navigation working and the biggest problem was you had no jQuery library selected for the fiddle to run off of.</p> <p><strong><a href="http://jsfiddle.net/Josh_Powell/EYjnG/11/" rel="nofollow">Mobile Nav</a></strong></p> <p><strong>HTML</strong></p> <pre><code>&lt;div id="pull"&gt;&lt;span&gt;Menu&lt;/span&gt; &lt;/div&gt; </code></pre> <p><strong>CSS</strong></p> <pre><code>div span { color: #FFFFFF; display: inline-block; width: auto; text-align: center; text-decoration: none; line-height: 50px; padding-left: 10px; padding-right: 10px; } </code></pre> <p>I changed the id pull to a div because when it was an anchor tag all of the navs would lose their text color.</p> <p>I have made a drop-down with a drop-down in it while still being responsive! Take a peak at this jsfiddle.</p> <p><strong><a href="http://jsfiddle.net/Josh_Powell/EYjnG/8/" rel="nofollow">JSFIDDLE Drop-Down with a nested Drop-Down</a></strong></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload