Home › Forums › Support › Background image frame for site › Reply To: Background image frame for site
March 18, 2016 at 7:59 pm
#180224
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;
}