Title: protist's Replies | WordPress.org

---

# protist

  [  ](https://wordpress.org/support/users/protist/)

 *   [Profile](https://wordpress.org/support/users/protist/)
 *   [Topics Started](https://wordpress.org/support/users/protist/topics/)
 *   [Replies Created](https://wordpress.org/support/users/protist/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/protist/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/protist/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/protist/engagements/)
 *   [Favorites](https://wordpress.org/support/users/protist/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Easy Html question. I can’t seem to figure it out though](https://wordpress.org/support/topic/easy-html-question-i-cant-seem-to-figure-it-out-though/)
 *  [protist](https://wordpress.org/support/users/protist/)
 * (@protist)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/easy-html-question-i-cant-seem-to-figure-it-out-though/#post-1037113)
 * It looks like the template is using <am> and <pm> tags, which is weird. Anyhow,
   I believe the (non-elegant) quick solution is to open style.css where you’ll 
   find this:
 *     ```
       .PostTime pm{
       background: #293538 repeat scroll 0 0;
       color: #FFF;
       padding:0px;
       display: block;
       width:95px;
       left: 0;
       font-size: 14px;
       text-align: right;
       }
       ```
   
 * Change it to this:
 *     ```
       .PostTime pm,
       .PostTime am {
       background: #293538 repeat scroll 0 0;
       color: #FFF;
       padding:0px;
       display: block;
       width:95px;
       left: 0;
       font-size: 14px;
       text-align: right;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [What is the PHP Code to List Publish Date?](https://wordpress.org/support/topic/what-is-the-php-code-to-list-publish-date/)
 *  [protist](https://wordpress.org/support/users/protist/)
 * (@protist)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/what-is-the-php-code-to-list-publish-date/#post-1037101)
 * `<?php the_time('F jS, Y') ?>`
    [http://codex.wordpress.org/Template_Tags/the_time](http://codex.wordpress.org/Template_Tags/the_time)
   Is this what you mean?

Viewing 2 replies - 1 through 2 (of 2 total)