• I am trying to style a <footer class=”entry-footer”>. When I try to style in the browser its works, But when try to style in a CSS file it’s not working.

    I want all meta data to be in one single line on a single post page. Such as author, post date, and category.

Viewing 1 replies (of 1 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Hi @saadiqb – on my test site, this did the trick to put the post meta details side-by-side on single posts, rather than one underneath the other.

    /* Single Post Meta */
    .single .byline,
    body:not(.search-results).single article:not(.sticky) .posted-on,
    body:not(.search-results).single .cat-links,
    body:not(.search-results).single .tags-links {
      display: inline-block;
      margin-bottom: 0;
      margin-right: 5px;
    }

    Add this to the CSS editor at Appearance > Customize > Additional CSS.

    If this does not achieve your goal, could you please provide the following:

    • A link to a sample post on your site
    • A copy of the CSS you tried using. Add a code block in the forum and then paste it.
    • A screenshot or mockup showing what you’re trying to achieve
Viewing 1 replies (of 1 total)
  • The topic ‘entry meta style’ is closed to new replies.