I want to put tagline just beside the logo. How can I make this?
I put the following into header.php:
echo avia_logo();
echo bloginfo('description');
But this puts tagline above the logo not beside it.
I want to put tagline just beside the logo. How can I make this?
I put the following into header.php:
echo avia_logo();
echo bloginfo('description');
But this puts tagline above the logo not beside it.
I did the following which more or less works well:
header.php
echo avia_logo();
?>
<h1 id='tagline'>
<?php echo bloginfo('description'); ?>
</h1>
<?php
minimal-skin.css:
#tagline {
position: absolute;
left: 130px;
width: 300px;
}
Hi,
Kindly post a link to your site so we can give you a custom css snippet for your site. Thank you. :)
Regards,
Ismael
Hi mertnuhoglu,
Looking good. If you want to line everything up I would suggest adding this to your custom.css or Quick CSS.
#tagline, #header #searchform, .social_bookmarks {
top: 30x;
}
Regards,
Mya
You must log in to post.