Title: Post &amp; Sidebar Size Width Issue
Last modified: August 21, 2016

---

# Post & Sidebar Size Width Issue

 *  Resolved [daviaannette](https://wordpress.org/support/users/daviaannette/)
 * (@daviaannette)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/post-sidebar-size-width-issue/)
 * I made the sidebar wider, but it moved down the page because the post is too 
   wide.
 * **How do I make the post thinner?**
 * [http://blog.makemypinata.com/?p=1](http://blog.makemypinata.com/?p=1)

Viewing 1 replies (of 1 total)

 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/post-sidebar-size-width-issue/#post-4211064)
 * OK, I assume that you set the sidebar width to 299px in your theme’s custom CSS?
   You would do the same thing for the post area.
 * The main content area is divided into two sections, the post area, which has 
   an ID of **primary**, and the sidebar, which has an ID of **secondary**. It looks
   like you set **#secondary** to have a width of 299px. The width of the content
   area is 1020px, so 1020px – 299px = 721px left.
 * However, the sidebar also has a margin-left and a margin-right of 10px each, 
   so that’s 20 less px: 721px – 20px = 701px left. The post area also has a margin-
   right of 10px, so now you’re down to 701px – 10px = 691px. So that’s how much
   space you have left for your post area.
 * To set the width of the post area, add this rule to your custom CSS:
 *     ```
       #primary {
          width: 691px;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Post & Sidebar Size Width Issue’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/expound/2.0.1/screenshot.png)
 * Expound
 * [Support Threads](https://wordpress.org/support/theme/expound/)
 * [Active Topics](https://wordpress.org/support/theme/expound/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/expound/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/expound/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/post-sidebar-size-width-issue/#post-4211064)
 * Status: resolved