Firebug is failing me.
Can anyone tell me where the dark gray stripes at the very top and near the footer are coming from?
Thanks!
http://www.counselinginchapelhill.com/
Kailey Lampert answers:
The top margin on #header is revealing causing the one near the top (exposing the body background color).
The bottom margin on #main is causing the second grey stripe.
Easiest solution is to change the body background color the dark red.
ohlivia13 comments:
Setting the body color fixed both!
Thanks!
Hai Bui answers:
Check style.css line 290
#main {
margin: 0 auto 20px;
max-width: 62.5em;
padding: 0;
}
The grey line coming from the 20px bottom margin, you can fix it like this:
#main {
margin: 0 auto;
max-width: 62.5em;
padding: 0 0 20px;
}
RNWest answers:
Hi There,
It is coming from the margin on this css call.
style.css and about line 290 just change to this
#main { margin: 0 auto; max-width: 62.5em; padding: 0;}
Hope this helps and have a great day
Agus Setiawan answers:
hi,
you need change in style.css file,
find : #header {
and replace value in margin 20px 0px 0px 0px !important with 0px 0px 0px 0px !important, only change 20px with 0px
hope that help.
thanks.