I am currently exploring the functionality of StumbleUpon's navigation bar by attempting to replicate it.
My approach involves using 3 lists within 1, structured like this:
<nav role="navigation">
<ul id="rightnav">
<li></li><!--
--><li></li><!--
--><li></li>
</ul>
<ul id="leftnav">
<li></li><!--
--><li></li><!--
--><li></li>
</ul>
<ul id="centernav">
<li id="dislike"> </li><!--
--><li id="stumble">STUMBLE</li><!--
--><li id="like"> </li>
</ul>
</nav>
This is my progress so far: http://jsfiddle.net/litari/yCT4D/1/
Unfortunately, I am facing challenges with aligning the three lists properly despite multiple attempts. Since I am relatively new to CSS, I assume there might be something basic that I am overlooking.
I would really appreciate any feedback on my CSS. If there are improvements to be made, please do let me know (and provide reasons why). I am eager to learn and enhance my skills! Thank you :)