1

Below is my code to get rid of the gray borders surrounding the content in genesis framework.

.site-container {
    background: #fff;
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 30px;
}

I'm not sure why this isn't making a change in my website. enter image description here

Still looks exactly the same.

Diana Bohorquez
  • 53
  • 1
  • 1
  • 5
  • Adding a link to a test / staging / live site, until the question is answered, would really help those trying to provide you a solution. – GaryJ Jul 07 '16 at 10:21

1 Answers1

0

set background color

.site-container {
    background-color: #fff;
    margin: 0 auto;
    max-width: 1140px;
   padding: 0 30px;
}

if not solved could be the grey background is related to the parent of you site_container ..

check for backgrond in body and html or in parent of you container

and set these

 background-color: #fff;
ScaisEdge
  • 131,976
  • 10
  • 91
  • 107