Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #25528
    #127254

    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>

    #127255

    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>

    #127256

    Hey!

    Glad you found the solution :)

    Best regards,

    Peter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Site title instead of logo’ is closed to new replies.