• I am VERY new to wordpress and just got my template installed (monochrome 2.3) but i need to change the header text to an image.

    I have followed every guide i could find on google for this but none of them seem to work, i’m begining to think that there is something different about this theme’s header.php

    …..FYI pretty HTML savvy,
    Michael

Viewing 4 replies - 1 through 4 (of 4 total)
  • A link to the site would certainly ease a diagnosis

    Thread Starter ballaboardin

    (@ballaboardin)

    Add the following to the style on line 51 (#logo) of style.css in your themes template files. It currently looks like this:

    #logo {
    display:inline;
    float:left;
    margin:26px 0 0 5px;
    }

    Make it look like this:

    #logo {
    display:inline;
    background-image: url(img/your-image.gif) no-repeat scroll left top
    float:left;
    margin:26px 0 0 5px;
    text-indent: -9999px;
    }

    Obviously alter the name of the image for the one you have stored in the img folder of your themes template.

    Thread Starter ballaboardin

    (@ballaboardin)

    Made the changes and it moved some of the header around and moved the font up – as well as not displaying my new logo

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Simple mistake – Help?’ is closed to new replies.