Viewing 1 replies (of 1 total)
  • Hi Mariana,

    You wrote CSS to remove the background but it uses .page in the CSS selectors, indicating that it should only apply to WordPress pages (not posts, or anything else).

    Replace that entire chunk of CSS you wrote with this less specific CSS that will target the entire site, not just pages:

    body.custom-background,
    #header,
    #page:before,
    #page:after,
    #main,
    #prefooter {
        background-image: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Posts Page Border’ is closed to new replies.