Hiding/Removing a particular WP Page Title - Need some assistance!

Discussion in 'WordPress' started by magiclouie, May 2, 2012.

  1. #1
    Hello DP members,

    I tried to search for plugins that could allow me to remove or hide a particular wordpress page title but unfortunately, I had no luck yet.

    Do you know of some plugins that could do that?

    Good for those themes like headway that we will just check a check box to hide a page title.

    I tried adding this to the stylesheet:

    #post-23 h2 {display:none;}

    wherein the "23" is the specific Page's ID, still no luck.

    Your help will be very much appreciated.

    Thanks,
    Magiclouie
     
    magiclouie, May 2, 2012 IP
  2. nutsaboutwordpress

    nutsaboutwordpress Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    try this css.

    .page .title {display: none;
    }

    add it to your custom.css and not the style sheet, let me know if it works.

    dean
     
    nutsaboutwordpress, Jun 8, 2012 IP
  3. satguy

    satguy Well-Known Member

    Messages:
    780
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    130
    #3
    satguy, Jun 8, 2012 IP
  4. tonysafescaffolding

    tonysafescaffolding Peon

    Messages:
    32
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    It sound like you just want to hide the title on one page and not the others? is this correct? if this is the case. when editing the page. switch the page to html view of the main text field and insert

    <style type="text/css">
    .pagetitle H1 {display: none;
    }
    </style>
    where page title is the name of the css class of the page title


    If you want to do it to every page then create a custome css file and add the css rule. add the css reference to the header.php file in your theme
     
    tonysafescaffolding, Jun 11, 2012 IP
  5. wpunwrapped

    wpunwrapped Peon

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    try this css.

    Try this

    .page .title {display: none;

    }

    add it to your custom.css and not the style sheet, let me know if it works. Also think about adding a child theme to your site as well

    wpunwrapped
     
    wpunwrapped, Jul 31, 2012 IP