NogDog;10893683 wrote:Because it's putting the HTML into table cells, my idea of a "simple" CSS solution won't work. 🙁
Off-hand I'm not familiar with the QuickForm stuff enough to know if there's a way to tell it to put both elements into the same table row or cell.
As it turns out there is. I found the solution here: http://www.midnighthax.com/quickform.php.I tried this site earlier but for some reason could not connect, it has a more extensive tutorial than is on the Pear site.
The solution is to use addGroup() instead of addElement(). The code looks like this:
$buttons[] = &HTML_QuickForm::createElement('reset', 'btnClear', 'Clear');
$buttons[] = &HTML_QuickForm::createElement('submit', 'btnSubmit', 'Submit');
$form->addGroup($buttons, null, null, ' ');
Thanks for your time and effort. I'm going to set this as resolved. Hopefully this last bit of info will help someone else.
Regards, cleanman2