Move product description right
Move the product decription above the SKU field in the right side panel
<script>
Ecwid.OnPageLoaded.add(function(page) {
if (page.type == "PRODUCT") { jQuery("div.ecwid-productBrowser-details-descr").insertBefore(".ecwid-productBrowser-sku");
}
})
</script>
Sometimes, you want the product description to be in the top of the right side panel instead of under the main image. This can be a better layout if the description is brief, and the product image is large or deep.
This can be done using jQuery and a script that runs when the Ecwid page has been loaded.