• At the top of the template, where it says Hueman Inspire and Empower, the title & tagline, I want to remove those and get rid of the blank space area which is left over.

    Peter

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Peter. Welcome to the Hueman forum. You can remove the title and description with some css, either in a child theme style.css file or by using a plugin like Simple Custom CSS.

    /* remove site title and tagline */
    .site-title, .site-description {
      display: none;
    }

    Hi great theme.

    I was wondering the same thing as Peter. I don’t want to remove the title and description. I just want to remove the blank space (padding) above and below the title+description.

    Am i also able to change the background colour of the header into the background picture?

    @clem81 – Welcome to the Hueman forum. You can remove the header padding with this css:

    /* remove header padding */
    #header .group.pad {
      padding: 0;
    }

    There is another 10px around the title if you want to remove that:

    #header .site-title {
      padding: 0
    }

    Please create a new topic for your second question. Also, posting a link to your site would be helpful. Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove blank space at the top’ is closed to new replies.