Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #85415
    yogawithagnes
    Participant

    Hi,

    How can I remove the section/page title from the header?

    Example here: remove “schedule” from the top of my page:
    http://yogawithagnes.com/schedule/

    Thank you!

    #85457
    Mahesh
    Keymaster

    Hi @yogawithagnes,

    Go to “Dashboard=> Appearance=> Customization=> Theme Options=> Customs CSS” box and add the following CSS. Use one of the following as required for you.
    1.Hides page title in your entire site(all pages)

    #main .page .entry-header {
        display: none;
    }

    2. If you want to hide the page title for that particular page(schedule page)

    #main .page.post-34 .entry-header {
        display: none;
    }

    Regards,
    Mahesh

    #85511
    yogawithagnes
    Participant

    Thank you Mahesh, it worked well!

    #85565
    Mahesh
    Keymaster

    Hi @yogawithagnes,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove section name from header’ is closed to new replies.