Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Caroline Moore

    (@sixhours)

    Glad you like it! I may add this functionality in a future release. In the meantime you can edit header.php and replace this, line 25:

    <div class="title"><?php bloginfo('name'); ?></div>

    with this:

    <div class="title"><a href="<?php echo home_url(); ?>" title="<?php bloginfo('name') ?>"><?php bloginfo('name') ?></a></div>

    You may also want to add the following to your stylesheet to prevent the blog title from having a :hover color change:

    .title a:hover {
    	color: #f3f3f3;
    }

    That should do it. 🙂

    Thread Starter livren

    (@livren)

    Thanks so much, it worked perfectly!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Sixhours] Making the Blog Title Clickable’ is closed to new replies.