I would like to use the niceform javascript (http://www.badboy.ro/articles/2007-01-30/niceforms/). For this i have to add a class to a form (class="niceform")
How would i theme a form, all forms or just the login form. Anny suggestions please??

Comments

brucebanner’s picture

so no one has come up with a niceforms module yet, but it's just as easy to implement without it.
go here
Its got all the answers you need.. just place a div class="niceform" after the user_login_form and you good to go.

--
When God is with you, who can stand against you?

Mike_Waters’s picture

In Drupal 6.x, to add a class to a form, add the following to your form definition:

$form['#attributes'] = array('class' => 'classname');