How to delete white space above the header

  • Unknown's avatar

    Hi there,

    I have two questions and i really hope someone can help me out:
    1. how can i delete the white space above my header? I recon i have to make the margin smaller, but i don’t know how to do it in CSS
    2. The letters in my right column are very small, i would like to make them a bit bigger, without automatically making the rest of the text on my website bigger.

    Thanks a lot in advance!

    Kind regards,

    Diane
    http://www.cuisinedeclementine.com

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    To remove the space above the header, add this:

    .site-header {
    padding-top: 0;
    }

    To make the widget titles larger, add this and increase the value:

    .widget-title, .widgettitle {
    font-size: 8px !important;
    }

    To make the list of links inside widgets larger, add this and increase the value:

    .widget ul {
    font-size: 11px !important;
    }
  • Unknown's avatar

    Thanks so much for helping me out justpi! I can finally make the last adjustments to my blog so it looks the way i like it to look! Thanks again!

    Kind regards,

    Diane

  • The topic ‘How to delete white space above the header’ is closed to new replies.