Hi there. How can I change the size of text in a mobile text input, or in some other component? Should I try with CSS or with JS?
I can't make it larger nor shorter. Is there an easy way to change the property?
Hi there. How can I change the size of text in a mobile text input, or in some other component? Should I try with CSS or with JS?
I can't make it larger nor shorter. Is there an easy way to change the property?
Hello!
You can Run JS on Load event for page:
pre$("[dsid=mobiletextinput]").css('font-size','300%');/pre
where mobiletextinput - name of component.
Thanx!! I'm just trying.