I have the same problem. It seems that the grey line only appears after adding (and possibly removing) footer widgets. I have to different installations of Blaskan and one of them looks great without a grey line in the footer (I have never added a widget there) and the other has one (I have added and removed a widget there).
Anyone? How can this be removed? Thanx!
It is not due to hr tag. It is due to “border-top”. Please check the #footer -> “border-top” in your style.css file. And change the value from
border-top: 12px solid black;
to
border-top: 0px solid black;
Please make sure you make any CSS change as a child theme. Otherwise, your changes are not preserved when the theme gets updated.
If you are creating a child theme, the following code should do…
#footer {
border-top: 0px;
}
Thanks Pothi Kalimuthu!
You also pointed me in the direction of child themes which I should have been using from the start.