• Hi There,

    Sorry this is a really silly question.

    How to i remove backend page name showing on the live page?

    For example my page is called ‘home’ and its shows on the page like this: https://www.cefnityresltd.co.uk

    I want to remove the spacing and text.

    How to i remove this function/whole area so the slider is just below the header?

    Many Thanks in advance.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter willdavis18

    (@willdavis18)

    Making sure it notify’s me by e-mail.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, the following will remove the page title from all pages.

    .page-title {
        display: none;
    }

    Thread Starter willdavis18

    (@willdavis18)

    Sorry if i sound silly, but what page is that on? Header.php?

    Thanks

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Sorry, that is CSS, so it would go into the CSS file.

    If you have not yet done so, I would suggest creating a child theme so that any customizations you make will not be overwritten by a future theme update. Alternately you can use the Edit CSS function in the Jetpack plugin, or use one of the other Custom CSS plugins that will keep CSS changes from being overwritten.

    Child Themes
    Child Theme creation plugins
    Jetpack plugin
    Custom CSS plugins

    Is there a way to apply this css to specific pages only? It definitely works…but too well! I only want to remove the titles from certain, hand-picked pages.

    I haven’t downloaded wordpress, btw, I’m using Edin within the wordpress platform.

    Moderator Kathryn Presner

    (@zoonini)

    Sure, just precede it with the page’s unique custom class. For example:

    .page-id-30 .page-title, .page-id-35 .page-title {
        display: none;
    }

    You can get each page’s unique ID in the WP Admin dashboard while editing the post, or by viewing the page’s source in a browser, on the body tag.

    I haven’t downloaded wordpress, btw, I’m using Edin within the wordpress platform.

    If you need further help with a site hosted on WordPress.com, feel free to ask questions over in their forums:

    https://en.forums.wordpress.com/

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to remove a Page Title on a Page?’ is closed to new replies.