Hi!. My name is Ramiro,and i from Argentina. Sory for my poor english.
Im developing a system using JQuery UI framework. I am stopped in the implementation of a jquery-ui-button.
My html button code for the form is this:
- <button type="submit" class="submit"><p>Entrar</p></button>
Simillary i defined the reset button, but with class="reset".
Hacking the css jquery-ui code and creating my css rules i got this result:
I can't modify te position of "Limpiar". I like him center :(
The modification at jquery-ui css are those:
- .ui-button-text-only .ui-button-text { /*padding: .4em 1em;*/ }
My css file contains for button this:- .login button{ float: left; margin-left: 3%; height: 22px; width: 70px; }
- .login button p{ font-size: 12px; position: relative; top: -2px; }
- .login button .submit { margin-left: 3%; }
- .login button .reset { margin-left: 5%; }
I appreciate any help.
Thanks!