Can't seem to find it anywhere, and I didn't use the hr tag in any of my html files.
Tried specifying in css hr { display: none; }
not working either, what the hell is going on?
This isn't a matter of looking hard enough, trust me i've stared at the code for HOURS.
EDIT: thanks everyone >.> lol
Using Firebug, I found the culprit. And sure enough as Grillz comments, it's a border, not a horizontal rule:
#main {
border-bottom: 1px solid #E3E7E9;
margin-bottom: 0;
}
div#main has a border-bottom tag on it on line 273 of the style.css file. try removing that?
精彩评论