Border around my theme?

3 replies
How do I wrap a white border around the outside edge of my wordpress theme?
#border #theme
  • Profile picture of the author Aaron Sustar
    You should open the main CSS file (usually you will find it at your-website.com/wp-content/themes/your-theme/style.css) and look for #farouter or #outer or #wrapper or something like that.

    Once you find the correct element, add this inside the curly brackets:
    border: 2px solid #FFFFFF;

    I hope that helps.

    Aaron
    {{ DiscussionBoard.errors[2162413].message }}
  • Profile picture of the author Mike Adams
    @Aaron Sustar I need 15px on the top and bottom and 50px on the right and left.
    Signature
    P.S. If you found my post useful, please click the "Thanks" button below...
    {{ DiscussionBoard.errors[2162454].message }}
  • Profile picture of the author newmoon
    Code:
    border: solid #FFFFFF;
    border-width: 15px 50px;
    {{ DiscussionBoard.errors[2162753].message }}

Trending Topics