Title: Two column archive
Last modified: August 21, 2016

---

# Two column archive

 *  [pjdbck](https://wordpress.org/support/users/pjdbck/)
 * (@pjdbck)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/two-column-archive/)
 * trying to make the archive listing be in two columns what do i need to add to
   this to make that happen?
 *     ```
       <ul>
                        <?php wp_get_archives('show_post_count=1'); ?>
                            </ul>
       ```
   

Viewing 1 replies (of 1 total)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/two-column-archive/#post-4885707)
 * try CSS;
    for that you need to add a specific CSS class to the `ul` tag;
 * example:
 *     ```
       <ul class="two-column">
          <?php wp_get_archives('show_post_count=1'); ?>
       </ul>
       ```
   
 * CSS (might need refinement depending on the used theme):
 *     ```
       ul.two-column li {
       display: inline;
       width: 50%;
       float: left;
       }
       ul.two-column li:nth-child(2n+1) {
       clear: left;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Two column archive’ is closed to new replies.

 * 1 reply
 * 2 participants
 * Last reply from: [Michael](https://wordpress.org/support/users/alchymyth/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/two-column-archive/#post-4885707)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
