Header Text

Discussion in 'ColorWay WordPress Theme' started by claysyoung, Dec 23, 2013.

  1. claysyoung

    claysyoung Guest

    Joined:
    Sep 10, 2013
    Messages:
    16
    Likes Received:
    0
    I reviewed and got the following code on how to remove teh header text from all pages. The code worked great. Is there a way to remove the header text from individual pagesm but leave the header as a global feature? I have a client that wants to remove the header text on just certain pages. Here is the code to remove the header globally that you had in another thread. Thanks in advance!

    .sl {
    display: none;
    }
    .content-wrapper h2{
    display: none;
    }
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Yes you can remove heading for particular pages. Just pick page id and put css on the basis of that id.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page-id-7 .content-wrap h1{
    display: none;
    }
    Code above will remove heading from page with page id 7.
    Check image for reference.
    page-id.png


    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page