You need like a menu bar style like this inside your “navbar” class:
Header.php
<div class=”navbar”>
<div class="social">
<div class="social_inner"><a href="https://www.twitter.com/digiraindrops"/>
<img src="<?php bloginfo('template_directory'); ?>/images/twitter.jpg" alt="Follow Us" /></a></div>
</div>
<div class="social_inner"><a href="https://www.facebook.com/digitalraindrops/">
<img src="<?php bloginfo('template_directory'); ?>/images/facebook.jpg" alt="Facebook" /></a></div>
</div>
</div>
And a style.css entry like:
/* Start Social Links */
.social {
position:relative;
float:right;
width: 400px;
margin-right:10px;
height:32px;
}
.social_inner {
float:right;
margin: 0;
padding:0;
}
Adjusting the margins to suit!
WordPress Version 3 has made it ‘cool and easier’
Better still would be to write the code in a file called social-horizontal.php
add this to the themes folder then in header.php
below:
<div class="navbar">
Add:
<?php /* Add in our Horizontal Social Media */ ?>
<?php get_template_part( 'social', 'horizontal' ); ?>
Anyone reading this topic and would like a more dynamic solution, have a look here as well!
HTH
David