• Hello – I’d like to show a small portion of each post on this page along with the title of the post.

    I’m surprised the post titles are not showing… I’ve checked my CSS and nothing there should be blocking them.

    Can you take a look and see if you can find anything amiss?

    Many thanks.

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

Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author satoristudio

    (@satoristudio)

    Hello Brigid, you have a custom CSS rule this hides post titles, you will need to remove or modify it in order for post titles to be shown on category pages:

    .site-content h2 {
        display: none !important;
    }
    Thread Starter briggreene

    (@briggreene)

    Oh wow.
    and Oh no.
    It must be there for a reason.
    Maybe for the archive pages….
    I cannot change it and run the risk of breaking something deep in the site.
    I’ve got to do a better job of notating the changes.

    Can I change the Post Titles to be h3?

    Thread Starter briggreene

    (@briggreene)

    It appears that sometimes the header appears twice, as in here
    https://brigidgreene.com/c/travels/

    when the H2 is unhidden.
    What’s going on there?

    Many thanks.

    Theme Author satoristudio

    (@satoristudio)

    You can use additional CSS to un-hide the titles on archive pages only:

    .archive.category .site-content h2 {
        display: none !important;
    }

    The duplicate title appears in cases when you seem to have an additional heading added inside the post’s content.

    Thread Starter briggreene

    (@briggreene)

    That seems to be an awesome solution.

    Let me give it a try. Thanks so much.

    Thread Starter briggreene

    (@briggreene)

    That worked out well. Thanks.
    And my mistake on adding an additional heading from copying and pasting text/code trying to escape from Gutenberg.

    I wonder if you’d be willing to share with me the developer’s tool you use to find the correct css classes, etc., to edit the correct item.

    Okay if not.

    Thanks again,
    Brigid

    Theme Author satoristudio

    (@satoristudio)

    Glad to hear!
    I’m looking at a live site’s code using the built-in developer console, here’s the guide on opening it on all major browsers.

    Thread Starter briggreene

    (@briggreene)

    I’m very appreciative. Thank you so much for sharing and being so patient.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Post Titles Missing from Category Pages’ is closed to new replies.