Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Where is the dark gray coming from? WordPress

  • SOLVED

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/

Answers (6)

2012-07-12

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!

2012-07-12

Daniel Yoen answers:

style.css:123

background-color: #1B1B1B;

2012-07-12

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;
}

2012-07-12

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

2012-07-12

Martin Pham answers:

inline css....

2012-07-12

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.