When I am on the home page the home button, the white house, does not display, and when I am on another page it appears but displays as selected:
http://www.denverneighborhoodnews.com/
Thanks!
Mark
When I am on the home page the home button, the white house, does not display, and when I am on another page it appears but displays as selected:
http://www.denverneighborhoodnews.com/
Thanks!
Mark
This may not be the best, but it seems to work. From the Theme Appearance Editor, you will need to edit the header.php.
Find the line (Towards the bottom):
<em><div id="nav" class="fix"><ul class="clearfix"></em>
to
<em>$frontpage_id = get_option('page_on_front');</em>
Replace with
<em><div id="nav" class="fix">
<ul class="clearfix"</em>
<?php if (is_page($home)){?>
<li class="page_item "><a class="home" href="<?php echo get_settings('home'); ?>/"title="Home">Home</a></li>
<?php } else { ?>
<li class="current_page_item "><a class="home" href="<?php echo get_settings('home'); ?>/"title="Home">Home</a></li>
<?php } <em>$frontpage_id = get_option('page_on_front');</em>You must log in to post.