When I drag and drop an element on my page the element becomes \"ghosted\". Basically it gets some transparency value.
Is there some way to make it opacity: 1;
opacity: 1;
If you are using JavaScript then in the function which handles the dragStart event include set the style opacity to 1 example:
function dragStartHandler(e) { this.style.opacity = '1.0'; }