Can't Nofollow Links In NavBar
-
I want to nofollow the contact us and privacy policy page in my navbar, but I can’t figure out how to do it and keep the themes CSS intact.
Header.php:
<div id="navmenu"> <ul> <li<?php echo (is_home() ? ' class="current_page_item"': '')?>><a href="<?php echo get_option('home'); ?>/"><span>Home</span></a></li> <?php themefunction_list_pages_flat('title_li='); ?> </ul> </div>
style-section-navigation.css:
} div#navmenu ul li a:hover { background: transparent url('images/background-navmenu-item-hover-left.gif') left top no-repeat; text-decoration: none; } div#navmenu ul li a:hover span { display: block; background: transparent url('images/background-navmenu-item-hover-right.gif') right top no-repeat; color: #00528f; } div#navmenu ul li.current_page_item a, div#navmenu ul li.current_page a:visited { background: transparent url('images/background-navmenu-item-hover-left.gif') left top no-repeat; } div#navmenu ul li.current_page_item a span, div#navmenu ul li.current_page_item a:visited span { background: transparent url('images/background-navmenu-item-hover-right.gif') right top no-repeat; color: #00528f; }
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Can't Nofollow Links In NavBar’ is closed to new replies.