Tagged: logo, site title, tagline
Hi,
How could I implement simply the site title (and its tagline) instead of the obliged logo image upload?
Thanks
S
Found it, but it doesn’t work properly
I did (according to support before) this on 137 in header.php (i commented out the logo line)
echo "<div class='wp_title'>". bloginfo('name') ."</div>";
echo "<div class='wp_description'>". bloginfo('description') ."</div>";
Strangely, this appears in my source (the title is placed outside the div tags, so my styling has no success!)
<div class="container">The Title<div class="wp_title"></div>The description<div class="wp_description"></div></div>
Ok, It should have been this and now it works:
<div class='wp_title'>
<?php echo bloginfo('name');?>
</div>
<div class='wp_description'>
<?php echo bloginfo('description');?>
</div>
Hey!
Glad you found the solution :)
Best regards,
Peter