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
