templates - How to use style on input field in Demandware? -
i want append image in input field in demandware...
i wondering use style on demandware's isinputfield tag, can acheive in demandware templates on tag
isinputfield formfield="${pdict.currentforms.helloform.nickname}" type="input"
much appreciated!
isinputfield
custom isml tag, implemented in template
{cartridge_name}/cartridge/templates/default/util/inputfield.isml
you can use parameter rowclass
specify css class surrounding div (you can see code uses parameter in template mentioned above)
e.g.
<isinputfield formfield="${pdict.currentforms.giftcert.purchase.from}" rowclass="label-above" type="input" />
after need provide css styling class have applied.
Comments
Post a Comment