• I’ve been having a problem with Arras for some time, and nothing seems to fix it. My website is https://www.NOCCAInstitute.com.

    On pages — including the index page — everything looks fine. But on posts, there’s what looks to be padding on the right and bottom of the wrapper, as well as a border that shouldn’t be there.

    I’m not very comfortable working with php, and I haven’t changed the php for single posts, but just to make sure, I downloaded a fresh copy of Arras and uploaded the single post php. I’ve also tried switching to the default css. In both cases, the problem remains.

    Has anyone else encountered this issue?

Viewing 2 replies - 1 through 2 (of 2 total)
  • this style in /themes/arras/css/styles/empty.css:

    /* single post */
    
    .single .post, .single-post	{ background: #fff; border: 1px solid #CCC; margin: 0 10px 10px 0;  }

    is interfereing with the body class which is generated for the single post:
    <body class="single single-post postid-1100">

    adding something like:

    body.single-post{border:none;margin:0;}
    to user.css should correct the issue.

    Thread Starter rkread

    (@rkread)

    Thanks so much for the speedy reply. Worked like a charm! Funny, I’d never even seen the “user.css” file before — great override option.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Arras theme: unwanted wrapper border appearing on posts, not pages’ is closed to new replies.