Background image on homepage

  • How can I adjust the space of the homepage background image. Meaning, less “dead space” at the top and above the featured image.

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

  • Hello,

    Thanks for reaching out! You can try adding the following style within the “Additional CSS” section of the WordPress Customizer:

    #custom-header {
        margin-top: 0;
        margin-bottom: 0;
    }

    Let us know if there is anything else.

    Thanks!

  • Thank you! Worked but my client would still like to see more moved up. Like, can I put her logo to the left and the menu to the right next to it so her photo and content move up a little?

    Thank you! I am new to WordPress and its giving me fits.

  • Hello,

    I’m afraid there’s no simple solution for aligning the logo to the left of the navigation menu. However, you can gain more space by decreasing the logo size and header height. This can be accomplished by adding the following styles (in place of the previously provided styles):

    #custom-header {
        max-width: 560px;
        margin: 12px auto;
    }
    #header.home-header {
      min-height: 280px;
      max-height: 380px;
    }

    I hope this helps.

    Thanks!

  • The topic ‘Background image on homepage’ is closed to new replies.