• how do i remove the title from the home page only, i want it in the main menu but don’t want it as a title on the page
    i have looked through previous posts but i can’t seem to find an answer to this that actually works
    here is link to site: https://69.195.124.60/~masmporg/
    thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Do not edit the theme itself. First create a child theme for your changes. Or install a custom CSS plugin.

    As esmi stated, you want to create a child theme or use a CSS plug-in to add the CSS rule for hiding your page title (i.e., Home).

    Then, you should learn how to use a web developer tool like Firebug (a free extension for Firefox) or Chrome Developer Tools (comes built-in with Chrome). Then it’s just a matter of right-clicking on the page title and selecting Inspect element to see what selector to use to hide the title. In your case, you want to add this CSS rule:

    body.home .page-title {
       display: none;
    }

    The HTML body element will only have a class of home on the home page, and the page title will have a class of page-title, so it is rather easy to select and hide the page title on just the home page.

    Thread Starter aphdes

    (@aphdes)

    thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘remove home page title’ is closed to new replies.