Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Instead of targeting just the entry-title element, target the whole .entry-header class to remove the border along with the text:

    .entry-header {
     display: none;
    }

    Let us know how it goes.

    Moderator Kathryn Presner

    (@zoonini)

    If you only want to affect that specific page, make the element target only that page ID:

    .page-id-2778 .entry-header {
     display: none;
    }

    You can find the unique page ID by viewing the page source or using a browser inspector. Look on the <body> tag to find it.

    Thread Starter lizzyross

    (@lizzyross)

    Thank you Kathryn!

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