Category: Programming, Resources, Themes, WordPress
How To Add A Menu To Whiskey Air Theme
Chip on 21 August 2009After realizing my pages got hidden in the big sidebar, I decided to move them and the search box just below the header. A ul/li combination did the trick:
Here’s the CSS style for it. Add it in style.css.
/* Top menu: pages */
#ja-botnav {
background: #CCC;
clear: both;
margin: -2px 0;
padding: 5px 0;
text-align: right;
margin-top: 8px;
}
#ja-botnav ul {
margin: 0;
padding: 0;
}
#ja-botnav li {
margin: 0;
padding: 0 10px;
display: inline;
vertical-align: middle;
}
#ja-botnav li a {
color: #999999;
font-size: 9pt;
}
#ja-botnav li a:hover, #ja-botnav li a:active, #ja-botnav li a:focus {
color: #FFFFFF;
}
And here is the HTML to be added inside the header div:
<div id="ja-botnav">
<ul>
< ?php wp_list_pages('title_li=');?>
</ul>
</div>
If you’re too lazy to do it, download here Whiskey Air 0.9.1 with top menu. Updating Whiskey Air from 0.9 to 0.9.1 is simple. Just replace header.php, footer.php and style.css with the ones in the archive. Don’t forget to carry over any change and addition you’ve made to your Whiskey Air theme.
Do you have your blog powered by Whiskey Air? Share it here and I’ll share some link love.
One Response to How To Add A Menu To Whiskey Air Theme
Leave a Reply Cancel reply
-
Recent posts
-
Inception Theme
August 29th, 2010
Read more and discuss (2) » -
How To Build An Online Visitor Counter
August 30th, 2010
Read more and discuss (0) » -
3D Offices Building – 1980′s Style
August 25th, 2010
Read more and discuss (0) » -
Beautiful Websites – Design Inspiration #1
August 21st, 2010
Read more and discuss (0) » -
iPad and iPhone Design Inspiration
August 21st, 2010
Read more and discuss (1) » -
How To Add The New Twitter Button To Your Blog
August 21st, 2010
Read more and discuss (0) » -
Are You A Netsetter?
August 21st, 2010
Read more and discuss (0) » -
Envato Founders Interview
August 21st, 2010
Read more and discuss (0) » -
New Addition to adButterfly Network
July 9th, 2010
Read more and discuss (0) » -
New 3D Objects
June 19th, 2010
Read more and discuss (0) »
-
Inception Theme
-
Most commented posts from 2010
-
Most commented posts from 2009
- Top 10 Web Hosting Sites (36)
- Twitter Fiasco (32)
- 1000 Web Links (23)
- How To Export PDF in Photoshop CS4 (23)
- Corporate Mistakes (23)
-
Most commented posts from 2008
-
Most commented posts from 2007
-
Categories
- 3D (2)
- AdSense (24)
- Blogging (121)
- Branding (22)
- Featured (3)
- General (167)
- Google (49)
- Graphics (54)
- Interviews (9)
- JavaScript (20)
- jQuery (2)
- Marketing (41)
- Microsoft (7)
- MSN (8)
- Organizer (2)
- PHP (31)
- Programming (25)
- Resources (60)
- Reviews (7)
- SEO (53)
- Social Networking (18)
- Speedlinking (40)
- Themes (8)
- Web (179)
- Windows 7 (4)
- Windows Mobile (6)
- WordPress (76)
- Yahoo (9)









good job, thanks.