Hello!
I have a sortable list I've created where the list items need to be placed
side-by-side. The list items are positioned correctly, however, whenever I try
to move a list item, no matter where I click, the list item gets positioned at
the far left end of the screen and doesn't allow me to place it in a different
position.
Here is a code example in jQuery:
$("ul.items").sortable({
placeHolder: "ul.items",
update: function() {
.......
}
});
and here's the list item styling:
li.item {
list-style: none;
display: inline;
float: left;
}
When I take the "float: left;" line of code out, the sorting works just fine, but
the list items need to be placed side-by-side.
Thank you for your help in advance!