• Hi! Hoping to get some help on two issues, please!

    Since our title is in our logo, we’re not using the title text line in the header.

    – Am I able to move the tagline up closer to the logo/image and the logo closer to the top of the page?

    – Can I hard code the page title somewhere so that it shows up properly in search engines but does not appear in the header area on the site?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • The logo is already close to the top of the page for me, not sure how much closer you are looking to get it. In terms of the tagline, you can try this CSS in Appearance->Customize->Additional CSS

    .site-branding .site-description {
    	margin-top: -20px;
    }

    As far as the page title goes, you can try this CSS

    #main .page .entry-title {
    	display: none;
    }

    Search engines should still be able to get the title of the page from the <title></title> tags

    Thread Starter iammk

    (@iammk)

    Thanks for your fast response! I pasted both of those into the Additional CSS box but I’m not seeing results for either. Did I do something wrong?

    It removed the header on the normal pages but not on the main page it looks like or at least from what I can guess you’re wanting to do. Instead of

    #main .page .entry-title {
    	display: none;
    }

    try

    .page .entry-title {
    	display: none;
    }

    In regards to the tagline, you’re referring to the ‘MN orphaned neonatal kitten rescue’ text beneath the logo right?

    Thread Starter iammk

    (@iammk)

    Right. Basically, I want the header to look like this.

    .page didn’t seem to do it either.

    Hmm I think this may be what you’re looking for

    .site-branding .site-title {
    	display: none;
    }
    Thread Starter iammk

    (@iammk)

    That did it, thank you!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing space from header + site title issues’ is closed to new replies.