Hi,
I would like to know how to put the social buttons of the Habitat theme on the top of the page. (header) right of Contact
Is it possible?
Martin
Hi,
I would like to know how to put the social buttons of the Habitat theme on the top of the page. (header) right of Contact
Is it possible?
Martin
In footer.php remove following code:
<ul class="social_bookmarks">
<li class='rss'><a class='ie6fix' href="<?php bloginfo('rss2_url'); ?>">RSS</a></li>
<?php
if($k_option['includes']['acc_fb'] != '')
echo "<li class='facebook'><a class='ie6fix' href='http://facebook.com/".$k_option['includes']['acc_fb']."'>Facebook</a></li>";
if($k_option['single']['acc_tw'] != '')
echo "<li class='twitter'><a class='ie6fix' href='http://www.twitter.com/".$k_option['single']['acc_tw']."'>Twitter</a></li>";
if($k_option['includes']['acc_fl'] != '')
echo "<li class='flickr'><a class='ie6fix' href='http://www.flickr.com/people/".$k_option['includes']['acc_fl']."'>flickr</a></li>";
?>
</ul>
and add it to header.php before code:
<!-- Navigation for Pages starts here -->
Maybe we need to adjust css a bit - I'll help you after you modified the code....
You must log in to post.