I have the following html code, and I am trying to get all the images in one line, however I am only seeing a dot, which I think is the bullet point for the list. What is wrong?
#emoticonscontainer ul li { display: inline; }
<div id="emoticonscontainer">
<ul>
<li><img src="smile.png" /></li>
<li><img src="sad.png" /></li>
<li><img src="surprise.png" /></li>
<li><img src="wink.png" /></li>
<li><img src="love.png" /></li>
</ul>
</div>
You need to set your list type to get rid of the dot:
Your images should be appearing. Perhaps you have the wrong path.