Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #87578
    shawzepe
    Participant

    I want to keep the site title but not have it display in the header. I’ve been playing around with CSS for this but can’t get it to work. I also want to keep the tagline

    Is that even possible?

    #87593
    Mahesh
    Keymaster

    @shawzepe: Do you mean to remove Site Title and Title Tagline from header? If yes, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #site-header {
        display: none;
    }

    Regards,
    Mahesh

    #87612
    shawzepe
    Participant

    I do! Except I want to keep the title tagline. Is that possible? Or too tricky

    Thanks for your awesome help 😀

    #87615
    Mahesh
    Keymaster

    @shawzepe: For that you can use the following CSS instead:

    #site-header .site-title {
        display: none;
    }

    Regards,
    Mahesh

    #87643
    shawzepe
    Participant

    Perfect! Thank you so much

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘remove site title from header’ is closed to new replies.