Using a list as;
<ul id="scroller">
<li><img src="../static/image/brand1.png" title="brand title"></li>
.....
</ul>
And with css properties;
ul#scroller li {
list-style: none;
display: inline;
}
ul#scroller li img{
margin-left: 75px;
float:left;
}
ul#scroller {
overflow: scroll;
}
and the YUI CSS reset just before this definition.
The problem is; instead of the horizontal scroll, my list items are line breaking.
Peace