Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The html is as follows:

<ul id="members">
    <li><a id="Chris"><img alt="Chris" src="images/chris.jpg"/></a></li>
    <li><a id="Carlin"><img alt="Carlin" src="images/bass2.jpg"/></a></li>
    <li><a id="Mikael"><img alt="Mikael" src="images/drums.jpg"/></a></li>
    <li><a id="Bert"><img alt="Bert" src="images/keyboard.jpg"/></a></li>
</ul>

What I am trying to achieve is these images positioned horizontally which I managed find but the images had an underline style. I know that to fix it I need text-decoration:none somewhere, the css I tried was:

#members { list-style: none; text-decoration: none; float:left; display: inline; }
#members li { list-style: none; text-decoration: none; border: none; float:left; display: inline; margin: 0px 75px 20px 0px; }

If I change the second line of the above css to:

 #members li a img { list-style: none; text-decoration: none; border: none; float:left; display: inline; margin: 0px 75px 20px 0px; } 

Then the underline is removed but the images are then positioned vertically in a line instead of horizontally.

I know it's probably something really silly but I can't see what's causing it myself.

Thanks,

Martin

share|improve this question

2 Answers

up vote 1 down vote accepted

Try:

a,
a img {
    Text-decoration: none;
    outline: none;
    border: 0px none transparent;
}

The above removes the underline, the outline and borders from the a and the descendant img, it doesn't declare the display property, so the float should still work, though if you float the images, you may need to declare overflow: hidden; on the parent a or li elements.

share|improve this answer
this seemed to work, thanks! – martincarlin87 Apr 25 '11 at 15:32
@martincarlin87, you're very welcome. Glad to be of help :) – David Thomas Apr 25 '11 at 17:12

The underline is probably coming from the wrapping <a> tag, see if this works:

#members li a,
#members li a:visited
{ text-decoration: none; }

a img { outline: none; border: none; }
share|improve this answer
thanks, I now have this: #members { list-style: none; text-decoration: none; float:left; display: inline; } #members li { list-style: none; text-decoration: none; border: none; float:left; display: inline; margin: 0px 75px 20px 0px; } #members li a, #members li a:visited { text-decoration: none; } but those darn underlines are still there! – martincarlin87 Apr 25 '11 at 14:53
updated to a img { outline: none; border: none; } – hunter Apr 25 '11 at 14:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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