Reputation: 1533
My friend made a HTML, I just added jQueryUI and made a part sortable. But it's responding awkwardly. Can you guys have a look and suggest what to do to fix is?
This is the JSBin.
http://jsbin.com/woyami/1/edit?html,css,output
Upvotes: 0
Views: 117
Reputation: 531
Here is the solution.
remove float:left from "#designSidebar"
and
remove display: inline; float: left; from ".designtheme_area"
It will fix the issue.
Upvotes: 1
Reputation: 462
I do not know what you are looking for but I'd go for that:
$("#main-navigation").sortable({
opacity: 0.6,
cursor: 'move',
tolerance: 'pointer'});
Upvotes: 1