Viewing 3 replies - 1 through 3 (of 3 total)
  • it looks to me like you were able to remove the title from the footer section. How did you do that?

    Thread Starter lincolndaving

    (@lincolndaving)

    I have just removed my site title entirely, not the solution I was looking for.

    Theme Author Ben Sibley

    (@bensibley)

    Hi Lincoln,

    This can be done with some CSS. Here’s a breakdown of the various ways you can hide the site title on the site with CSS.

    Hide only the site title in the header:

    #site-title {
      display: none;
    }

    Hide only the site title in the footer:

    #site-footer h1 {
      display: none;
    }

    Hide the site title everywhere:

    #site-title,
    #site-footer h1 {
      display: none;
    }

    You can copy and paste any of those snippets into the “Custom CSS” section in the Customizer (Appearance > Customize). Once added there, it should take affect right away.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Site Title from Bottom of Page/Footer’ is closed to new replies.