Forum OpenACS Development: overriding color of the ad_form background

hi

just need some ionformation on ad_form

Is it possible to override the settings of the background of the form in ad_form ? that is the default lightblue with the dark blue outline?

any help would be appreciated

thanks in advance

Collapse
Posted by Jerry Asher on
Take a look at /packages/acs-templating/resources/forms, I think you may find the magic thereabouts.
Collapse
Posted by Jeff Lu on

You can just copy a template from /packages/acs-templating/resources/forms and edit it. Then set the style like this:
<formtemplate id="my_form_name" style="/path/of/template/form_template_name">

If you put your new template into /packages/acs-templating/resources/forms then you will only need to put the template name in style like so:
<formtemplate id="my_form_name" style="form_template_name">

I hope it helps :)