• Im using
    #header h1 {
    display: none;
    }
    but it only hides site title on my startpage/homepage. On the other pages sitetitle is showing. How do I hide it on all pages?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter SwedenCharlie

    (@swedencharlie)

    I have also tried
    #h1.site-title {
    display: none;
    }
    and it still is the same problem.

    You were close on the second try. Use this…

    .site-title {
    display: none;
    }

    Or you could simply scroll down to .site-title in your themes stylesheet and add display: none;

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide site title’ is closed to new replies.