I tried that but the tagline still merged with the two buttons
this is my php code for the two buttons:
<?php if ( !in_array( ‘__navbar’ , $wp_current_filter ) ) :?>
<div class=”container outside”>
<div class=”site-description”>
<h2 class=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
<div class=”top-buttons”>
Puppies
Gallery
</div>
</div>
</div>
<?php else : //when hooked on __navbar ?>
<div class=”span65 inside site-description”>
<h2 class=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
<div class=”top-buttons clearfix”>
Puppies
Gallery
</div>
</div>
<?php endif; ?>
<?php
}
css:
.top-buttons .btn {font-family: Kristen ITC}
Cheers