Install Custom CSS Manager Plugin
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/
After the installation go here:
Appearance > Custom CSS Manager
put this line of code
.type-post {
border: none;
}
Hello,
if you wont to remove border put this code in css file:
.type-post, .type-page {
border: 0 solid #E7E7E7;}
Kris
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
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;
}
thank you!!! worked perfectly.
@saferrier: glad to help 😉