Austrian Economics Wiki talk:Vector.php: Difference between revisions
Appearance
Created page with "I was able to get rid of that superfluous gap between "Donate" and "Store" by changing this code to combine the nav-left and nav-right portions into one big nav-left. Unfortun..." |
No edit summary |
||
| Line 1: | Line 1: | ||
I was able to get rid of that superfluous gap between "Donate" and "Store" by changing this code to combine the nav-left and nav-right portions into one big nav-left. Unfortunately, that resulted in the "Wiki" item wrapping to the next line on smaller screens: | I was able to get rid of that superfluous gap between "Donate" and "Store" by changing this code to combine the nav-left and nav-right portions into one big nav-left. Unfortunately, that resulted in the "Wiki" item wrapping to the next line on smaller screens. So, I reverted it: | ||
<source lang="php"> | <source lang="php"> | ||
<div id="nav-wrapper"> | <div id="nav-wrapper"> | ||
Revision as of 09:47, 8 October 2012
I was able to get rid of that superfluous gap between "Donate" and "Store" by changing this code to combine the nav-left and nav-right portions into one big nav-left. Unfortunately, that resulted in the "Wiki" item wrapping to the next line on smaller screens. So, I reverted it:
<div id="nav-wrapper">
<div id="nav-content">
<div id="nav-left">
<ul>
<li><a href="/">Mises.org</a></li>
<li><a href="http://mises.org/daily/">Daily</a></li>
<li><a href="http://mises.org/about">About</a></li>
<li><a href="http://bastiat.mises.org/">Blog</a></li>
<li><a href="http://mises.org/Literature">Literature</a></li>
<li><a href="http://mises.org/media">Audio / Video</a></li>
<li><a href="http://mises.org/events/">Events</a></li>
<li><a href="http://mises.org/donate.aspx">Donate</a></li>
</ul>
</div>
<div id="nav-right">
<ul>
<li><a href="http://mises.org/store/">Store</a></li>
<li><a href="http://academy.mises.org">Academy</a></li>
<li><a href="http://mises.org/community/">Community</a></li>
<li><a href="http://wiki.mises.org">Wiki</a></li>
</ul>
</div>
</div>
</div><!-- END Header HTML -->
Nathan Larson (talk) 13:45, 8 October 2012 (MSD)