• Resolved groo600

    (@groo600)


    I would like to reduce or eliminate the white space between the bottom of the image I am using as the site title and the menu bar.

    Here is the site: classichawaiidesigns.com

    The image is 80 px tall and I tried to move the menu bar up by saying it was 40 px in the code below, but as you can see, then some white space just starts to cover up the title image.

    h1.site-title {
     background: url(http://classichawaiidesigns.com/wp-content/uploads/classicHawaiiDesignsTitleAndLogo1.jpg) no-repeat scroll 0px 0px #D8D8D8;
    height: 40px;
     width: 404px;
     }
Viewing 7 replies - 1 through 7 (of 7 total)
  • That space is being created by a margin here:

    .main-navigation {
        margin-top: 1.71429rem;
        text-align: center;
    }

    So try adding this to your custom style.css:

    .main-navigation {
        margin-top: 1.71429rem;
    }

    and adjust the margin accordingly.

    Thread Starter groo600

    (@groo600)

    Dude (or dudette), you are awesome. Your solution works perfectly. Thank you so much. I really appreciate it.

    LOL — It’s dudette! And you’re welcome.

    dianabyron

    (@diannetrussell)

    How to shrink the massive white spaces between the links in the widget?
    So many people hate the giant white spaces in the WP themes I’m surprised they don’t just code these out by default!

    How to shrink the massive white spaces between the links in the widget?

    It is best to start a new thread for a new question, and in the morning I can respond there and post what I did if nobody else answers before then.

    dianabyron

    (@diannetrussell)

    Thanks Leejosepho, if I start a new thread will you find it? How about if I call it: “shrink vertical white space in sidebar”?

    Any new topic that you post will be listed in your profile page. But bear in mind that this free forum is staffed by volunteers and that it is not possible to guarantee that any one individual will answer your questions. If you need one-to-one support, you would need to hire someone.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Twenty Twelve Reduce White Space between site title and menu’ is closed to new replies.