You need to update this in your CSS.
Look for:
#masthead {
padding: 0;
background: #fff;
-moz-box-shadow: 0 2px 6px rgba( 100, 100, 100, .3);
-webkit-box-shadow: 0 2px 6px rgba( 100, 100, 100, .3);
box-shadow: 0 2px 6px rgba( 100, 100, 100, .3);
width: 100%;
}
Update to:
#masthead {
padding: 0;
background: #fff;
width: 100%;
}
Basically, remove the box-shadow.
Thread Starter
Toto`
(@mariano78)
Thanks a lot Jan, you’ve been very helpfull.
Thread Starter
Toto`
(@mariano78)
Sorry but I just realized the bar is not disappear, now is smaller but is annoying if I want change background colour. What I have to do to remove it completely?
Thread Starter
Toto`
(@mariano78)
Hi guys
anyone can help me with that?
There’s also a box-shadow set on your main content area. If your theme has a built-in custom CSS option, use it; otherwise, get a custom CSS plugin and try:
#main {
box-shadow: none !important;
}