• delestage

    (@delestage)


    I would like to change the header text of my site, thedelestage.com.
    Before using wordpress, I had a little bit of code as follows:

    [please use the ‘code’ button to mark any posted code – this will keep it intact and readable]

    <h1><a href="index.html" title="Home"><span class="big"><strong>DELE</strong><span class="red">*</span>STAGE</span></a>
    This allowed the color of the letters, but not the * in “DELE*STAGE” to change on mouseover from red to black. I’m new to php and not sure how to change this to the way I had it before wordpress. Any ideas?

Viewing 1 replies (of 1 total)
  • Michael

    (@alchymyth)

    you will need to edit header.php, and look for:

    <h1 id="site-title"><a href="<?php...?>" title="<?php....?>" rel="home"><?php .... ?></a></h1>

    with some php code instead of the …..

    try and replace this with your code:

    <h1 id="site-title"><a href="index.html" title="Home"><span class="big"><strong>DELE</strong><span class="red">*</span>STAGE</span></a></h1>

    and copy the css from ‘Before using wordpress’ into style.css of your theme.

    (untested)

Viewing 1 replies (of 1 total)

The topic ‘Change Header text’ is closed to new replies.