Having an issue in IE where my horizontal scroll bar is not showing up on my gallery Chrome and FF are working fine.
CSS
ul.images
{
margin: 0;
padding: 0;
white-space: nowrap;
width: 100%;
overflow-x: auto;
}
ul.images li
{
display: inline;
height: 200px;
}
HTML
<ul class="images">
<li><a target="base" href="text.jpg"><img src="test.jpg" height="160px" border="0" ></a></li>
<li><a target="base" href="test.jpg"><img src="test.jpg" Height="160px" border="0" ></a></li>
</ul>
Any help would be appreciated thanks.