Remove page title from appearing on the loaded page

Discussion in 'ColorWay WordPress Theme' started by lionsden, Feb 7, 2013.

  1. lionsden

    lionsden New Member

    Joined:
    Feb 9, 2012
    Messages:
    7
    Likes Received:
    0
    Please provide the code and advice on how to remove the large page title that appears under the HOME >> PAGE NAME of each page that is loaded. For example, if you click my website http://MexicoVacationOnline.com then click one of the menu bar links, such as contact us, you will see HOME>> CONTACT US then the words CONTACT US underneath. I would like to remove the CONTACT US that appears underneath, which is the page title.

    I hope there is an easy solution that will not interfere with other titles or headings.

    To repeat: I want to keep the HOME>> PAGE NAME
    I want to remove the PAGE NAME that appears below.

    Thank you so much for your help.
    :) Lori
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  3. jchipgcs

    jchipgcs New Member

    Joined:
    Feb 12, 2013
    Messages:
    4
    Likes Received:
    0
    What was the "fix" for this?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-wrapper h2 {
    display: none;
    }
    .content-wrap h1 {
    display: none;
    }
     
    .content-wrap .contact h2 {
    display: none;
    }
     
  5. pixelhound

    pixelhound New Member

    Joined:
    Mar 15, 2013
    Messages:
    2
    Likes Received:
    0
    Hi , it does work only for pages with right column enabled. How to remove page title from fullwidth pages?
    Thanks
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Do let us know your website link.
     
  7. pixelhound

    pixelhound New Member

    Joined:
    Mar 15, 2013
    Messages:
    2
    Likes Received:
    0
    pixelhound.co.uk
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content-wrapper h2 {
    display: none!important;
    }
     

Share This Page