• Resolved patrickvd

    (@patrickvd)


    Hi,

    Could someone help me figure out how to hide the title of a page? I’d like to hide the pages of my site without having to remove them entirely. Is there an html code I can enter in additional CSS?

    Many thanks in advance!

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi there,

    I’d like to hide the pages of my site without having to remove them entirely. Is there an html code I can enter in additional CSS?

    Yes! Try this CSS to remove page titles on individual pages in Blask:

    .single h1.entry-title {
        display: none;
    }

    Let us know if you need more help.

    Thread Starter patrickvd

    (@patrickvd)

    Hi,

    Thanks for the quick reply! Sadly, it didn’t seem to do the trick. Should this code work for all pages or do I modify them?

    Sorry, very new to this.

    Moderator James Huff

    (@macmanx)

    It should work for all pages.

    Try this instead:

    .single h1.entry-title {
        display: none !important;
    }
    Thread Starter patrickvd

    (@patrickvd)

    Hi,

    Thanks, working well!

    Best,
    Patrick

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide Page titles’ is closed to new replies.