1
Look at the sub menu items demo 1, demo 2, ect in the top menu of this website, they are in the same line.
Check out its HTML code, you will see:
<div class="inline">
<a href="/slider/javascript-image-slider-demo1">Demo 1</a>
<a href="/slider/javascript-image-slider-demo2">Demo 2</a>
<a href="/slider/javascript-image-slider-demo3">Demo 3</a>
</div>
And check out its CSS code, you will see:
/* Allow inline links
--------------------------------------------*/
#ddmenuMst div.column div.inline
{
line-height:20px;
padding:0; margin:0;
}
#ddmenuMst div.column div.inline a
{
display:inline;
}