vote up 1 vote down star
1

I've an image that is wrapped in an anchor tag that, through jQuery, triggers an action somewhere else on the page. When I click on the image, two tiny 1px by 1px boxes show up in the upper and lower left corners of the image.

My CSS styles explicitly state no borders for images: a,img { border: 0; }

It also seems to only happen in Firefox 3. Anyone else had this issue?

flag

6 Answers

vote up 1 vote down

Are you talking about the dotted border that is visible when a link is active?

link|flag
1  
If so, try -moz-outline: none; – John Sheehan Oct 29 '08 at 16:53
vote up 0 vote down

Is your anchor tag under or overlining?

Set the a and a:hover in that situation to text-decoration: none.

Happened to me, and the reason it was two tiny boxes is because the width of the element didn't quite extend, or something.

Good luck!

D'oh: I see it's upper- and lower- LEFT boxes. Might be something else, like background or border of containing element peeking through.

link|flag
vote up 0 vote down

Here's a screenshot of the left part of the image (the graphic has a white background):

alt text

It's not the background, or the border of any other element. I checked.

link|flag
vote up 0 vote down

Have you tried also setting border-style:none;? It's a long shot, but you never know...

link|flag
vote up 0 vote down

No, that doesn't seem to do anything.

Interestingly enough, I just noticed I get the same little boxes if the image doesn't load and only the alt text is displayed; the boxes are still justified to the top and bottom left corners of the content.

Could jQuery be screwing something up?

link|flag
Does it still happen if you remove/comment out references to jQuery? It could just be a FF3 bug... – Zack Mulgrew Oct 29 '08 at 20:38
vote up 0 vote down

What is the display property of the anchor element? You can try setting display property of as "block" and make sure that the inner IMG elements float setting is set to "none".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.