You can style around the form and elements, but also add class:class_name and style the class with css:
<p align="left">[submit class:buttons_mainpage " "]</p>
and then in the theme class I add a new class buttons_mainpage:
1 2 3 4 5 6 7 8 9 10 11 |
.buttons_mainpage { background-image: url("images/but_submit.png"); background-repeat: no-repeat; margin: 0px 190px 0px 0px; padding: 0px; float: right; height: 26px; width: 69px; border: 0 none; cursor: pointer; } |