Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 21.2a

You can style all form elements using CSS. A basic knowledge off CSS is helpful for that. 

Styling a form with CSS includes the following steps:

  1. Create your own CSS and upload it to your PAS installation with the help of the File Manager.
    Go to page Styling Forms With CSS for more information on how to create your own CSS file based on a useful template.
  2. Apply the uploaded CSS to your service.
  3. Add your user defined classes to selected form elements.

Provide a CSS File

Create a CSS file that contains the styling definitions you want to apply, and upload it to the PAS system as a resource.
How to upload a CSS file resources is explained on Managing File Resources.

Apply the CSS File

Next, you need to apply the uploaded CSS file to your service.

Image Modified

Go to the Explorer

,

and select the relevant service.

In the service settings you can find the Apply CSS button

Select the Image Added button in the Controls Panel and choose the option Apply CSS.

Image Modified

A window opens that shows all CSS files that are available in the File Manager.

Select the CSS files you want to use in the service.

Info

Multiple selection is possible.

Add a Class to a Form Element

Image Modified

You can assign a CSS Class to each form element.

This CSS class must be defined in one of the active CSS file resources (see step Apply the CSS File).

The example on the left uses a class .description to style the description field.

Code Block
languagecss
.description {
    background-color: #E6E6E6;
}
In the applied CSS file, the class .description is defined.

In the executed form, the defined styling is applied: The description field with attribute CSS Class .description is adorned with a grey background.