• Hi,
    Has anyone seen this before and can help with a solution?
    My post titles are displaying as text rather than as titles, so it’s difficult to see what each post is about at a glance.
    Any CSS ideas would be gratefully received.

    Thanks and regards,
    Phil

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • There’s CSS hiding titles across your site. Since your CSS is minified I can’t tell exactly where this CSS was added, but these rules are responsible:

    .entry-title {
        display: none
    }
    
    .entry-title, .page-id-5573 .entry-title, .page-id-5569 .entry-title, .page-id-5566 .entry-title, .page-id-5561 .entry-title, .page-id-5555.entry-title, .page-id-5554 .entry-title, .page-id-5551 .entry-title, .page-id-2086 .entry-title, .page-id-5534 .entry-title, .page-id-5524 .entry-title, .page-id-5523 .entry-title, .page-id-5522 .entry-title, .page-id-5506 .entry-title, .page-id-5501 .entry-title {display:none;}
    

    You could add CSS to overwrite this, but it would be a better idea to just fix the problem at its source. Since no theme is just going to hide its titles, let alone by specific page IDs, I assume this is CSS you’ve added. You’ll need to remove it to fix the problem.

    If you still need to hide titles on those page ids, just delete the first rule, and this part of the beginning of the second rule:

    .entry-title,
    
    Thread Starter ainleyphil

    (@ainleyphil)

    Thanks,
    I removed the pageid8 for the News page itself, but these other IDs are for the pages rather than the posts.

    I removed .entry-title {display: none} from the CSS but all it did was show the author and date etc, it didn’t display the post title as a title.

    Do you have any other thoughts please?

    Thanks

    You need to add .entry-title {display: block !important; } to the custom css option under appearance->customize->custom css
    That will fix the issue

    Thread Starter ainleyphil

    (@ainleyphil)

    @dnyanraja You’re a diamond! Thank you.
    That issue’s been bugging me for ages.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Post titles displaying as text rather than as titles’ is closed to new replies.