Main page glow

Permalink
I was just wondering if there was a way to get rid of the slight glow that seems to appear on the borders of the main page

Site:http://www.kouturekakes.com/

 
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl
In your main.css file on line 10 you have a box-shadow, something like this
div#main-container {
   margin-top: 0;
   margin-bottom: 0;
   box-shadow: 2px 0 8px 0 #b2b9c1;
}

Just change it to
div#main-container {
   margin-top: 0;
   margin-bottom: 0;
   /* box-shadow: 2px 0 8px 0 #b2b9c1; */
}
Dexrop replied on at Permalink Reply
Thanks! That worked perfectly