Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    You need to add this CSS in your Custom CSS for making them show:

    article.hentry .category, article.hentry h1.post-title, .meta {
        display: block;
    }

    If your theme do not support Custom CSS, then you can use some Third Party Custom CSS plugin for that purpose.

    Thank you.

    Thread Starter nmkate

    (@nmkate)

    Thanks. I’m not getting that to work. Does it matter where it goes on the style sheet? I wonder if it conflicts with what I used to not display the category on the page that precedes the post I want the headline to appear on, which was this:

    article.hentry .category{
    display:none;

    Thanks!

    Kate

    Hello,

    If you are using this code in your style.css file, then those changes will reset to default when you update the theme in future.

    So it is recommended to use Child Theme/Custom CSS area for adding CSS.

    Anyways, if you add this in your style.css, then add it at very end and like this:

    article.hentry .category, article.hentry h1.post-title, .meta {
        display: block !important;
    }

    Thank you.

    Thread Starter nmkate

    (@nmkate)

    Great, thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Make title appear on post’ is closed to new replies.