• Hi, Using WordPress as a a CMS with static home page at https://www.eyedrum.net.
    We have hidden the homepage title on the page by giving it a blank name. This works to hide the page name and may be a noob’s approach.

    How can we remove that whole section on the homepage only? The way ti is now is that there is no page name but he blank space includes an <hr> and lots of white space. Is there a way to hide that section completely on the home page only?

    I tried some other suggested PHP and CSS methods but they leave the space where the title would otherwise be… we want to remove that space.

    Thanks for any help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I tried some other suggested PHP and CSS methods

    CSS visibility? Don’t use that. Use display none.

    Use display none.

    Actually:

    position:absolute;
    top:-9999px;
    left:-9999px;

    would be a lot better.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What about;

    position: absolute;
    z-index: -1;

    Would screen readers still read that?

    Not sure about that one. It depends how the various screen readers handle z-indexing (if at all).

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to hide homepage title section?’ is closed to new replies.