I am using the jqtransform jquery plugin to change the look and feel of my form elements. However, I am unable to override the width of a text input element - no matter how I style the element it is overriden. Is there any known way to override this property?
Thanks in advance,
JP
Seems like the reasons are:
div
width
is hardcoded (by js) in style
attribute, so overriding this in CSS doesn't workSo, in your case I'd suggest you to use some jquery:
var myW = 300;
$("#elementId").css("width", myW);
$("#elementId").parents(".jqTransformInputWrapper").css("width", myW);