Skip to main content
Topic: hr artifact - Boards, Recycle  (Read 2145 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

hr artifact - Boards, Recycle

Look at the narrow hr bar ... very left edge has a 1 pixel artifact that is caused ( I think ) by the border-top. Change the border-top: to border: and the artifact goes away. Doing that may break something somewhere else though .. IDK.  Hard to see the artifact on the attachment so you will likely need to look at a working site.

index_light.css

Code: [Select]
hr {
border-top: 1px solid #bbb;
background: #eee;
background-color: #eee;
}

Does not seem like much but it is guaranteed that users will notice this and bring it up.

Re: hr artifact - Boards, Recycle

Reply #1

Another browser-dependant result... :-\

I tried using border and: with firefox the pixel goes away, while with Chrome and it creates a small box around a 1px area (that is actually correct because the hr has a height of 1px).

Can you try using:
Code: [Select]
border-left: 0;
seems to disappear as well.
Bugs creator.
Features destroyer.
Template killer.

Re: hr artifact - Boards, Recycle

Reply #2

Seems to work for me ... I added it to a PR I have pending since its certainly better than whats there.