• Hello

    how can I center the category that appears on top of every post, near the sidebar title? I tried <center> the elements on single.php but didn’t work.

    Thanks

Viewing 1 replies (of 1 total)
  • Hi pre20. Try adding the following CSS to a child theme style.css file or a plugin like Simple CSS or Simple Custom CSS:

    .page-title .meta-single li {
      float: left;
      margin-left: auto;
      margin-right: auto;
    }
    .page-title .meta-single li.category {
      text-align: center;
      width: 100%;
    }
    .page-title .meta-single li.comments {
      text-align: right;
      margin-left: -10%;
    }
Viewing 1 replies (of 1 total)

The topic ‘Center post category title’ is closed to new replies.