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
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
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
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