Reply To: Background image frame for site

Home Forums Support Background image frame for site Reply To: Background image frame for site

Home Forums Support Background image frame for site Reply To: Background image frame for site

#180224
Tom
Lead Developer
Lead Developer

You could try something like this:

body:before, body:after {
    content: "";
    position: fixed;
    background: #900;
    left: 0;
    right: 0;
    height: 10px;
}
body:before {
    top: 0;
}
body:after {
    bottom: 0;
}
body {
    border-left: 10px solid #900;
    border-right: 10px solid #900;  
}