Title: Remove post borders
Last modified: August 21, 2016

---

# Remove post borders

 *  Resolved [saferrier](https://wordpress.org/support/users/saferrier/)
 * (@saferrier)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/)
 * Hi!
 * I’m new to wordpress.org, and just installed the Prana theme.
 * Can someone help me remove the thin borders around the posts? Then I guess I 
   would need to reduce the padding on the left side of each post for the whole 
   thing to be aligned…
 * Would I then just past the solution into the Jetpack CSS Plugin or for this do
   I have to create a child theme?
 * Thank you so much!
 * Sam
    iciandla.com (under construction!!!)

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

 *  [wacoh_327](https://wordpress.org/support/users/wacoh_327/)
 * (@wacoh_327)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/#post-4628726)
 * Install Custom CSS Manager Plugin
    [http://wordpress.org/plugins/custom-css-manager-plugin/](http://wordpress.org/plugins/custom-css-manager-plugin/)
 * After the installation go here:
 * Appearance > Custom CSS Manager
    put this line of code
 *     ```
       .type-post {
           border: none;
       }
       ```
   
 *  [Kristina](https://wordpress.org/support/users/kristina-goranovic/)
 * (@kristina-goranovic)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/#post-4628727)
 * Hello,
 * if you wont to remove border put this code in css file:
 * .type-post, .type-page {
    border: 0 solid #E7E7E7;}
 * Kris
 *  Thread Starter [saferrier](https://wordpress.org/support/users/saferrier/)
 * (@saferrier)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/#post-4628732)
 * Thanks Kris and wacoh_327 for your speedy responses, both solutions worked perfectly.
 * Quick question for wacoh_327, I have the CSS stylsheet editor that just automatically
   installed with Jetpack. Is the Custom CSS Manager that you suggest a better choice?
 * However, is there a way for me to remove the padding now? The borders are gone
   but the posts are still indented towards the right (leaving room for the now 
   non-existent border). I’d really like for all of it to be aligned on the left.
 * Thanks again!
    Sam
 *  [wacoh_327](https://wordpress.org/support/users/wacoh_327/)
 * (@wacoh_327)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/#post-4628747)
 * your welcome saferrier glad to help.
 * Note: if you only want to remove the borders of the posts, just only modify **.
   type-post** 🙂
 * I personally use Custom CSS Manager Plugin, it is very simple but works great!
   🙂
 * for the padding, add this css style to your **.type-post** class:
 * `padding-left: 0px;`
 * Now your .type-post class should look like this:
 *     ```
       .type-post {
           border: none;
           padding-left: 0px;
       }
       ```
   
 *  Thread Starter [saferrier](https://wordpress.org/support/users/saferrier/)
 * (@saferrier)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/#post-4628810)
 * thank you!!! worked perfectly.
 *  [wacoh_327](https://wordpress.org/support/users/wacoh_327/)
 * (@wacoh_327)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/#post-4628817)
 * **[@saferrier](https://wordpress.org/support/users/saferrier/):** glad to help
   😉

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

The topic ‘Remove post borders’ is closed to new replies.

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

 * 6 replies
 * 3 participants
 * Last reply from: [wacoh_327](https://wordpress.org/support/users/wacoh_327/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/remove-post-borders/#post-4628817)
 * Status: resolved