• Resolved james215

    (@james215)


    Hello,

    I was wondering if there is a way to customize my Site Identity while hiding it in the header. The only place I want my Website Name “James Cerebral Palsy” to appear is in the tabs e.g. Chrome, Firefox, Internet Explore, Edge. Any help anyone can provide would be greatly appreciated. FYI my firewall blocks viewers from outside the United States to view my website.

    • This topic was modified 6 years ago by james215.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Matias Mann

    (@developress)

    Add this custom CSS in the WordPress Customizer:

    #branding {
     display: none;
    }

    It will hide the image the the title.

    If you want to only hide the site title and keep the image use:

    .site-title, .site-description {
    display: none;
    }
    Thread Starter james215

    (@james215)

    Thank you for your reply. The #branding CSS hid too much and the .site-title, .site-description { display: none; } did noting. All I am tying to do is hide the site Title in the header on all pages.

    Matias Mann

    (@developress)

    Try this:

    #site-title {
    display: none;
    }
    Thread Starter james215

    (@james215)

    That worked thank you for your help

    • This reply was modified 6 years ago by james215.
    Matias Mann

    (@developress)

    Good job! Good luck with your project.

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

The topic ‘Site Identity Issue’ is closed to new replies.