• Resolved david2x3

    (@david2x3)


    Hello, can anybody help me?

    I want to hide name of my site but without loosing name in browser tab. How can I do it?

    Thank you for answer.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Um..huh? I do not think that is possible.

    You can put CSS to hide the site title.
    .site-title {display: none}
    That will affect every page. If you want to affect only the home page, use
    .home .site-title {display: none}

    But it hides the link to Home.

    Thread Starter david2x3

    (@david2x3)

    THANK YOU!!!!!!

    I’m wondering if you mean this:

    Is there a way to hide the site title heading above the navigation menu, without changing your site name in Settings?

    If that’s what you mean, you could add the following in Appearance > Customize > CSS

    .title-area {
      border: 0;
      clip: rect(0, 0, 0, 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      white-space: nowrap;
      width: 1px;
    }

    This will keep the site title accessible for screen readers, but remove it from layout.

    https://snook.ca/archives/html_and_css/hiding-content-for-accessibility

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Site name’ is closed to new replies.