So the following is in my DOM:
<div
id="itemEditor"
class="quoteItemEditorView partType_MATERIAL editMode selectorEnabled"
style="left: -1px; right: 0px; width: auto; min-width: 480px; display: block;"
>
I am able to retrieve the element and replace the 'left' value however this is proving difficult. I have tried doing this through jquery and javascript via following methods but it wont over ride.
$("#itemEditor").css('style','left','400px !important');
document.getElementById("itemEditor").style.left="400px !important";
$("#itemEditor").css('style','left','400px');
document.getElementById("itemEditor").style.left="400px";
Any suggestions