• Hello,

    I’m using WordPress Thesis, both newest versions.

    I used to have a border and white background around the content of my Pages, but they’ve all disappeared for some reason, and I can’t get these back.

    One of these is my Contact page at:
    http://www.morebettersmarts.com/contact/

    I haven’t made any changes to the CSS in these areas; the code I used was:

    /* Style Contact Page */
    .contact .post_box {
    background:#FFFFFF none repeat scroll 0 0;
    border:1px solid #0B5394 !important;
    margin:1em;
    padding:2em;
    }

    I used the same basic code around my posts, and these are still working fine.

    Any help is appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You are missing a closing } for the part above the Contact page styling in your custom.css file.

    .custom li#wydrp-2 {
    
    background:#FFFFFF;
       border:1px solid #0B5394;
       padding:5px;
    color: #000000;
    margin:20px 5px 10px -5px;

    should be

    .custom li#wydrp-2 {
    
    background:#FFFFFF;
       border:1px solid #0B5394;
       padding:5px;
    color: #000000;
    margin:20px 5px 10px -5px;
    }
    Thread Starter nifft

    (@nifft)

    Argh!!

    Thank you! Amazing how one little symbol in an unrelated action can hose it up!

    Rick

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Lost border and box around content on Pages’ is closed to new replies.