Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #81396
    Ash
    Participant

    Hi Sakin,

    I am wanting to hide my page titles, but when I include the following css,

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

    it also hides the featured content titles.

    I am not using the featured content to display blog posts, I am simply using the demo content which I have edited.

    Is there a solution to hide page titles, but keep the titles in the featured content boxes?

    Thanks in advance

    #81427
    Mahesh
    Keymaster

    Hi @Ash,

    The CSS you’ve included changes the display properties for all elements with entry-header class in the page. If you only want to hide the page title then you have to specify it for the page title only.

    Replace your above CSS with the following:

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

    Let me know if this fixes your issue.

    Regards,
    Mahesh

    #82240
    Ash
    Participant

    Hi Mahesh,

    Thanks for your time.
    Just to confirm that your CSS has resolved my issue.

    Kind regards

    Ash

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Featured Content Titles’ is closed to new replies.