Buttons can be moved below the fields if you change the CSS.peer wrote:
^^ I would like to do exact the same as @Fyno, so move the buttons to the left side.
Open the style.css file located in the directory of the current template you use example:templates/blue/style.css
After that you need to change the value width:xxx.px on 3 places:
Code: Select all
#header { position: relative; overflow: hidden; background: url('./images/hr.gif') bottom left no-repeat; width: 450px; padding: 10px 0 10px 0;}
Code: Select all
#footer { position: relative; overflow: hidden; background: url('./images/hr.gif') top left no-repeat; margin: 20px 0 0 0; width: 450px; padding: 10px 0 10px 0;}
Code: Select all
.main { margin: 10px auto 10px auto; width: 450px; padding: 2px; color: #FFF;}
Good luck!
EDIT: Damn, I just saw that these post have been very old. Still, someone may find use of this.
