Custom title, Bones theme

I’m a total wordpress noob and ran into my first problem. I downloaded this theme.

My question is how do I change how the p#logo.h1 is shown. I would like to put a <br /> in the middle of my title, and half in a custom .

Read More

So the html of the title should be something like:

<p id="logo><h1>This is a<br /><span id="customtitle">Big title</span></h1></p>

How can I change that?

Related posts

Leave a Reply

1 comment

  1. In your header.php file, replace this line:

    <p id="logo" class="h1"><a href="<?php echo home_url(); ?>" rel="nofollow"><?php bloginfo('name'); ?></a></p>
    

    with your custom line:

    <p id="logo><h1>This is a<br /><span id="customtitle">Big title</span></h1></p>