Remove page title

Discussion in 'ColorWay WordPress Theme' started by rlsdesigns, Oct 2, 2014.

  1. rlsdesigns

    rlsdesigns New Member

    Joined:
    Sep 12, 2014
    Messages:
    2
    Likes Received:
    0
    When i add the below CSS, it removes all other text within the tags H1/H2 tags. I only want to remove the Page name/title. HELP!!!

    http://www.theoldehickory.com/daily-specials/


    .content-wrapper h2 {
    display: none!important;
    }
    .content-wrap h1 {
    display: none!important;
    }
     
  2. urooj

    urooj New Member

    Joined:
    Dec 8, 2012
    Messages:
    18
    Likes Received:
    0
    Add code below in the custom CSS option in the themes options panel.

    .content-wrap h1:first-child, .content-wrap h2:first-child{
    display:none;
    }
     
  3. rlsdesigns

    rlsdesigns New Member

    Joined:
    Sep 12, 2014
    Messages:
    2
    Likes Received:
    0
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .content-wrapper h2 {
    display: none;
    }
    Thanks & Regards
    Yogesh Bhade
     

Share This Page