• Resolved the360guide

    (@the360guide)


    I was given this CSS to hide the title of a page:

    .post-1693 h1.entry-title {
    display: none;
    }

    However I would like to know what should I write to hide the title of all pages

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    use just h1.entry-title.

    Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.

    Moderator James Huff

    (@macmanx)

    Posts and pages share the same entry-title selector, so you only have two options here:

    1. Apply it individually to each title you want to hide following the example in your post.

    2. Apply it to all post and page titles automatically with just this:

    h1.entry-title {
    display: none;
    }
    Thread Starter the360guide

    (@the360guide)

    Thanks guys.. it worked perfectly…
    Thanks a lot

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Hiding page title with CSS’ is closed to new replies.