How to remove tagline in header?

Home Forums Automattic Vagabond How to remove tagline in header?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #157414 Resolve

    anja
    Member

    Hello, I would like to know how to remove tagline (under site title)? Or move lower.

    Thanks a lot,

    Anja

    #157415

    Kathryn P.
    Happiness Engineer

    It looks like you’ve removed the tagline under Settings > General. If you’d prefer to add it back but not display it on the site, this custom CSS should do the trick:

    .site-description {
       display: none;
    }

    To move it lower, you could add this instead, adjusting the number as you like:

    .site-description {
         margin-top: 40px;
    }

    Just let me know if you need further help.

    #157416

    anja
    Member

    Thanks for your help. I already did this, but there’s still white little circle in the middle of picture. How can I remove this ‘sign’? I upload header again but it’s still there.

    travelingaroundtravelingtoself.wordpress.com

    Thanks,
    Anja

    #157417

    Kathryn P.
    Happiness Engineer

    The white area is coming from the empty tag in your page’s source:

    <h2 class="site-description"></h2>

    If you add this custom CSS under Appearance > Customize > CSS, it should go away:

    .site-description {
       display: none;
    }
Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.