• Hello again,

    is there a way, to hide the title, social icons and the logo on a specific page?

    thx

    Florian

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Hey Florian,

    The Display Controls in Chosen Pro only allow for site-wide visibility changes, but you can use CSS instead.

    Please try this snippet:

    .page-id-2 .site-title,
    .page-id-2 .tagline,
    .page-id-2 .social-media-icons,
    .page-id-2 .post-title {
      display: none;
    }

    That will hide the requested elements on a page that has the ID of 2. All you need to do is replace the “2” with the ID of the page you want to target. This tutorial will show you how to find the ID of any page on your site: https://www.competethemes.com/blog/find-page-id/

    Thread Starter wvlg

    (@wvlg)

    Ok, that so far pretty good. But now I need to hide the Search Bar icon and the primary navigation menu on this page as well. Looked up some code but it doesn’t work

    `.page-id-2589 .site-navigation .primary-navigation,

    Theme Author Ben Sibley

    (@bensibley)

    Gotcha. This snippet will just hide the entire header then which includes everything at the top of the page:

    .page-id-2 .site-header {
      display: none;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hide Titel and social icons’ is closed to new replies.