• I was wondering how to remove the page titles and the navigational titles (i.e home / page name) that automatically appear on every page.

    I’ve found some plugins that will hide these titles, but this just leaves a blank white space where the titles once were. I’d like to remove these titles, and be able to put my own content where they were.

    Thanks in advance.

Viewing 6 replies - 1 through 6 (of 6 total)
  • I have tried title remover and title toggle plugins. They do not work. It must be a default global setting for the theme. help?

    Use the following code to hide title on all your pages:

    #intro.option1 .page-titl {
    display: none;
    }

    Copy paste the code in CSS Style editor also known as custom CSS (Dashboad – Appearance – Edit CSS)
    I’m actually trying to figure out how to play with the above code to hide page titles on specific pages instead of all the page.

    Sorry use this instead, i forgot to add the e in the titl(e).

    #intro.option1 .page-title {
    display: none;
    }

    thanks,
    and how to remove empty space where was page titl?

    hrva, did you remove that empty space?? I’d like to know how too 🙂

    .page-template-template-parallax-php #intro {
    display: none;
    }

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Remove 'page titles'’ is closed to new replies.