If it's images you want and you want them horizontally, just give them the class="drag". They only stack vertically if you give the class="drag" to a division or put a <br> tag after the img tag:
Code:
<html>
<head>
<!--drag engine code installed here-->
</head>
<body>
<img src="test.gif" class="drag">
<img src="test2.gif" class="drag">
<h1><b>"Hi there</b></h1>
</body>
</html>
Not:
Code:
<html>
<head>
<!--drag engine code installed here-->
</head>
<body>
<img src="test.gif" class="drag"><br>
<img src="test2.gif" class="drag"><br>
<h1><b>"Hi there</b></h1>
</body>
</html>
Bookmarks