• Hi,

    In first place I’d like to hide the logo just on the home page.

    My second question is: searching online I found how to remove the title of the pages but now I have two horizontal lines between the main menu and the content of the page. How can I remove them?

    Thank you very much

    • This topic was modified 8 years, 1 month ago by juanjosimon.
Viewing 6 replies - 1 through 6 (of 6 total)
  • hannah

    (@hannahritner)

    Hey,
    1. You can use this css:

    .home div#logo {
        display: none;
    }

    2. Try this:

    .page-header {
        display: none;
    }

    Hope that helps!
    Hannah

    Thread Starter juanjosimon

    (@juanjosimon)

    Worked perfectly. Thanks!!

    guethary

    (@guethary)

    Is it possible to remove logo and menu from one page I have set up?

    hannah

    (@hannahritner)

    Hey guethary,
    Do you want this effect your entire site or just one page? Can you post a link?

    Hannah

    guethary

    (@guethary)

    Hi Hannah,
    It’s https://arten.co.uk/about/phil

    I am trying to show a client a page idea but don’t wish to see the logo of ‘Arten’ or its menu.

    I am not sure if there is a way?
    Thanks,
    Guethary (UK)

    hannah

    (@hannahritner)

    This css would hide your header for just that page:

    .page-id-76 .headerclass {
        display: none;
    }

    And this would effect your entire site:

    .headerclass {
        display: none;
    }

    Just paste the one you want into your custom css box in Theme Options > Advanced Settings.

    Hannah

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Two questions; Hide logo on main page and remove page title lines.’ is closed to new replies.