• Resolved Crozon1

    (@crozon1)


    Hi there,

    I’m really new to WP and need some help. At the moment I would like to remove the Page Title from my page, while still keeping it as part of my navigation menu bar and in the page admin section of WP.

    For example at: http://www.crozon.ca/resources
    I would like to remove the first title ‘Resources’ from the page only.

    Thanks in advance,

    Not sure if this will help but I included my page.php file:

    [Code moderated as per the Forum Rules. Please use the pastebin]

Viewing 4 replies - 1 through 4 (of 4 total)
  • In your style.css look for this code around line 388

    h2, h2 a, h2 a:visited {
    color:#000000;

    add

    display:none;

    doing this will will take it out all pages like Home,Contact Us

    Thread Starter Crozon1

    (@crozon1)

    It didn’t seem to work – maybe I’m putting in in the wrong place?

    h2, h2 a, h2 a:visited{
    color:#000;
    }
    display:none;

    you need add after color:#000; before }

    Thread Starter Crozon1

    (@crozon1)

    Oops – I figured it out – I was supposed to remove the color#000; and replace it with display:none;

    Thanks so much govpatel!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing Page Titles’ is closed to new replies.