Can somebody help me how to create a border around blog posts

2 replies
  • WEB DESIGN
  • |
Hi,

I'm wondering if somebody can send me in the right direction. I want to create borders around all blog posts so it looks much better. Something like this. www gideonshalwick com

I make us of pagelines framework, a drag and drop wordpress theme. I know that it's possible with custom css, but i have no idea where to start and how i can do it.

Thanks a lot.
Hans
#blog #border #create #posts
  • Profile picture of the author failideas
    edit your css styles and look for .post rule

    replace with this

    .post {
    border: 1px solid #CCCCCC;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 4px #B7B7B7;
    margin-top: 20px;
    padding: 20px;
    width: 585px;
    }

    remove this code that shows before each post
    <div style="height:1px;border-bottom:1px dotted #d6d6d6; margin-left:20px;"></div>
    Signature
    Dental WordPress Theme - Dentist WP Theme - Lawyer WordPress Theme

    ++ Theme Release News and Promotions > submit here
    Affiliates - wanna make good money. Subscribe here Affiliates List
    {{ DiscussionBoard.errors[7193323].message }}
  • Profile picture of the author Evan-M
    this matchs the site you reference :

    .post {
    background: white;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-box-shadow: 0 0 4px #b7b7b7;
    -webkit-box-shadow: 0 0 4px #B7B7B7;
    box-shadow: 0 0 4px #B7B7B7;
    border: 1px solid #CFCFCF;
    padding: 20px 20px 0 20px;
    overflow: hidden !important;
    margin: 0 0 25px 0;
    }
    Signature

    Evan-M

    Easily The Worlds Best Wordpress Popup plugin

    Visit Website Design Firm For All Your Wordpress Coding Needs

    {{ DiscussionBoard.errors[7193914].message }}

Trending Topics