• Im im trying to remove the h1 title from the plugin, the one that has the title of the web site, but haven´t been able to do it.

    Is it posible to remove?.

    thanks for your time!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Phil

    (@philsbury)

    It isn’t, why do you want to remove it, just to not see the title?
    Removing it completely may give a lesser experience for screen readers etc as the document loses heading hierarchy. To hide it I’d suggest adding the following css to you theme (for now, a CSS editor in the plugin will be in v2):

    .age-gate-heading {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        border: 0;
    }

    If that’s not what you’re looking for, let me know.

    Cheers
    Phil

Viewing 1 replies (of 1 total)

The topic ‘H1 title removal’ is closed to new replies.