unleash
07-20-2011, 05:57 PM
Hello Friends,
I want followers icons in my Page navigation bar! You can check the navigation bar here: http://www.t-clicks.com/test
It's in the grey background contains search box in it...
Now I want to add followers like in the image below! I want to 3 followers links in it. I will increase the navigation width if it can't come in that area.
http://i51.tinypic.com/2ryhy6t.jpg
This is my navigation code I don't have any css for the or images but I can attach one image you can use for 3 links i wil change the images later! followers If you guys want my navigation css let me know!
http://i53.tinypic.com/124zuiq.jpg
<div id="top">
<?php
$pagesNav = '';
if (function_exists('wp_nav_menu')) {
$pagesNav = wp_nav_menu( array( 'theme_location' => 'header-pages', 'menu_class' => 'topnav', 'menu_id' => 'page-nav', 'echo' => false, 'fallback_cb' => '' ) );};
if ($pagesNav == '') { ?>
<ul id="page-nav" class="topnav">
<?php if ( is_home() ) { ?>
<li class="first"><a href="<?php echo get_option('home'); ?>"><?php _e("Home", 'themejunkie'); ?></a></li>
<?php } else { ?>
<li class="page_item"><a href="<?php echo get_option('home'); ?>"><?php _e("Home", 'themejunkie'); ?></a></li>
<?php } ?>
<?php wp_list_pages('title_li='); ?>
</ul>
<?php }
else echo($pagesNav);
?>
<div id="search">
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>">
<input type="text" class="field" name="s" id="s" value="<?php _e('Search in this site...', 'themejunkie') ?>" onfocus="if (this.value == '<?php _e('Search in this site...', 'themejunkie') ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e('Search in this site...', 'themejunkie') ?>';}" />
<input class="submit btn" type="image" src="<?php bloginfo('template_directory'); ?>/images/icon-search.gif" value="Go" />
</form>
</div> <!--end #search -->
<div class="clear"></div>
</div> <!--end #top-->
Thanking you!
I want followers icons in my Page navigation bar! You can check the navigation bar here: http://www.t-clicks.com/test
It's in the grey background contains search box in it...
Now I want to add followers like in the image below! I want to 3 followers links in it. I will increase the navigation width if it can't come in that area.
http://i51.tinypic.com/2ryhy6t.jpg
This is my navigation code I don't have any css for the or images but I can attach one image you can use for 3 links i wil change the images later! followers If you guys want my navigation css let me know!
http://i53.tinypic.com/124zuiq.jpg
<div id="top">
<?php
$pagesNav = '';
if (function_exists('wp_nav_menu')) {
$pagesNav = wp_nav_menu( array( 'theme_location' => 'header-pages', 'menu_class' => 'topnav', 'menu_id' => 'page-nav', 'echo' => false, 'fallback_cb' => '' ) );};
if ($pagesNav == '') { ?>
<ul id="page-nav" class="topnav">
<?php if ( is_home() ) { ?>
<li class="first"><a href="<?php echo get_option('home'); ?>"><?php _e("Home", 'themejunkie'); ?></a></li>
<?php } else { ?>
<li class="page_item"><a href="<?php echo get_option('home'); ?>"><?php _e("Home", 'themejunkie'); ?></a></li>
<?php } ?>
<?php wp_list_pages('title_li='); ?>
</ul>
<?php }
else echo($pagesNav);
?>
<div id="search">
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>">
<input type="text" class="field" name="s" id="s" value="<?php _e('Search in this site...', 'themejunkie') ?>" onfocus="if (this.value == '<?php _e('Search in this site...', 'themejunkie') ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e('Search in this site...', 'themejunkie') ?>';}" />
<input class="submit btn" type="image" src="<?php bloginfo('template_directory'); ?>/images/icon-search.gif" value="Go" />
</form>
</div> <!--end #search -->
<div class="clear"></div>
</div> <!--end #top-->
Thanking you!