• After my posts, I want my “post in Category @ such and such time” to show up all on one line, no

    • lists or anything.
      How do I go about doing this??
      (Can you tell Im a newbie to WP??)
      Thanks!
Viewing 5 replies - 1 through 5 (of 5 total)
  • They don’t already ?
    Here’s the css:
    .meta ul {
    display: inline;
    margin: 0;
    padding: 0;
    list-style: none;
    }
    .meta li {
    display: inline;
    }
    You should have something very like that in your wp-layout.css
    If you add the
    display: inline;
    to what you have under any .meta it will line it all up.
    If not, or if you need any more help, a link to your site will mean we can give you specific help 🙂

    You probably want to use the display:inline property in your stylesheet. The default WP stylesheet has:
    .meta li, ul.post-meta li {
    display: inline;
    }
    .meta ul {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
    }

    to ensure that the “list” stays all on one line.
    Is that what you mean? A link would be useful..

    podz how come you can read my mind?

    LOL 🙂

    Thread Starter Sumaira

    (@sumaira)

    That was exactly what I meant everyone. Thanks! You think I would have thought of that. Sometimes its just too simple. lol

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Question on how to format “posted by”’ is closed to new replies.