navigation menu question
-
Hi,
I have just used WP, I have question about menu. I created tab menu from categories. When I read an article from category A for instance, the category A on the menu doesnt highlight. How do I make it works? I want the category on the menu also show up too.
CSS:
#nav {margin: 0; padding: 0; list-style: none; float: left; font-family: Geneva, Arial, Helvetica, sans-serif;} #nav li {display: block;float: left;margin-left: 4px;padding: 7px 14px 7px;border-top: 1px solid #fff; text-transform: uppercase; font-size: 14px;font-weight: bold;background: #e7eaea url(images/tab_bg.gif) bottom left repeat-x;} #nav li:first-child {margin-left: 1px;} #nav li a {color: #555;text-decoration:none;} #nav li.current-page {background: #FFF;} #nav li.current-page:first-child {margin-left: 0;} #nav li.current-page a, #nav li.current-page a:hover {color: #0072ff;} #nav li a:hover {text-decoration: none;color: #222;} #nav li.current-cat {background: #FFF;} #nav li.current-cat:first-child {margin-left: 0;} #nav li.current-cat a, #nav li.current-cat a:hover {color: #0072ff;}
Code on header.php
<ul id="nav"> <li<?php if(!is_category() && !is_page() && !is_single()) { ?> class="current-page"<?php } ?>><a href="<?php bloginfo('url'); ?>" title="Home">Home</a></li> <?php wp_list_categories('orderby=ID&order=ASC&depth=1&hide_empty=0&title_li='); ?> </ul>
thank you
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘navigation menu question’ is closed to new replies.