• First, go see what I’m talking about at http://adamcorley.com
    Okay, I would like to take where it says the following out of the header.
    Adam Corley
    adamcorley.com

    All it does is link back to the site, and I can’t seem to find anything to take it out. If you know how, or have a bit of code, please share it with me. Keep in mind also: in this theme’s options, there is no option for a header image, so what is the code to insert a header image?

    xo

Viewing 1 replies (of 1 total)
  • To hide the text, edit style.css and add the following to the bottom of the file:

    #logo a,#logo h1 {
    position:absolute;
    top:-5000px;
    left:-5000px;
    }

    To add a 140px wide by 100px high image, upload your graphic (eg. header.jpg) to your theme’s img folder then, in style.css, change:

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

    to

    #logo {
    display:inline;
    float:left;
    height:100px;
    width:140px
    margin:0 0 0 5px;
    background:url(img/header.jpg) no-repeat left top;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How do I add a header to Monochrome’ is closed to new replies.