It is possible to add css inside a <g:actionSubmit> tag?

HumanistKittie

New Member
I mean: I have an upload form:\[code\]<g:form method="post" enctype="multipart/form-data"><input type="file" name="cv" id="cv" style=" max-width:120px"/><g:actionSubmit action="upload" name="upload" value="http://stackoverflow.com/questions/14481597/Upload" />\[/code\]Once tag is rendered in the final page, i have\[code\]<input type="submit" value="http://stackoverflow.com/questions/14481597/Upload" name="_action_upload">\[/code\]That is, the "Upload" button. But, in the input named "cv", as you can see, i have som css to keep the text box to grow too much. (max-width:120px)My problem is, the Upload button appears now mounted over the text box where the name and path of the file to upload is written, once selected. And I don't know how to manage that, how to move that button and ONLY that button. Is it that possible?I've tried to add css to the actionSubmit tag itself, but it moves the whole form.Thank you.
 
Back
Top