• Crowdsource

    (@crowdsourcewriting)


    I started working on a site called Cook-Nook (www.cook-nook.com) and I would like to remove the white space above the logo image.
    I am using WP 3.1 and the Twenty Ten 1.2 template.

    Can someone tell me how to do it?

    Thank you.

    Andre

Viewing 1 replies (of 1 total)
  • In style.css, change:

    #wrapper {
        background:#fff;
        margin-top: 20px;
        padding: 0 20px;
    }
    #header {
        padding: 30px 0 0;
    }
    #site-description {
        clear: right;
        float: right;
        font-style: italic;
        margin: 15px 0 18px;
        width: 220px;
    }

    to:

    #wrapper {
        background:#fff;
        padding: 0 20px;
    }
    #header {
        padding:0;
    }
    #site-description {
        clear: right;
        display: none;
        float: right;
        font-style: italic;
        margin: 15px 0 18px;
        width: 220px;
    }

    But be warned that your changes will be over-written the next time you upgrade WordPress or the theme. For this reason, it is recommended that you consider creating a child theme for your customisations.

Viewing 1 replies (of 1 total)

The topic ‘Remove blank space above header image’ is closed to new replies.