• Hi could anyone help to code the delicate theme in order to have the header only in static front page and not to show in other pages.
    Especially I do not want to have it at contact us page.

    thank you

Viewing 7 replies - 1 through 7 (of 7 total)
  • You want the whole header area gone or some elements……you can use css to hide elements which you don’t want to show on any particular page.

    pls post link to your site.

    Thread Starter ZotiFrodo

    (@zotifrodo)

    Hi Wp-21. Wow I am impressed within 20 min of registering to this forum. Thank you for your quick reply.

    My site link is http://forumigruaselbasan.org/forumi

    I want the header to stay in the Home page which is the front page, but gone at the contact us page.

    best

    Hi…still not clear..by header you are referring to which items at the top..?

    Thread Starter ZotiFrodo

    (@zotifrodo)

    Hi. I mean the images right below the menu.

    Then you can use like this below in your css of child theme:

    .page-id-94 .head-img {
        display: none;
        margin-bottom: 20px;
        position: relative;
    }

    I am assuming that you referred to the big image below the menu.
    By above line you will hide the image on the contact page.similarily you can use this for other pages also by using their page-id class which is generated for each page.

    @zotifrodo – it does not look like you have a Child Theme set up – but be sure you only make the changes above by creating one – see:

    http://codex.ww.wp.xz.cn/Child_Themes

    Or alternatively, you can add the code to custom CSS – if your site does not have that option, you can use a plugin such as Custom CSS Manager.

    Make sure you are not making changes to theme files – as your changes will all be lost when the theme is updated.

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

The topic ‘Header only in frontpage delicate theme’ is closed to new replies.