Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Besides the Form HTML and CSS, there is also the "servoy_web_client_default.css" template. This template contains the default CSS used for styling the forms and elements in a Web Client. Modifying this template will result in changing the overall look of a Solution all solution int he Web Client.

This css can be found at: {serverURL}/servoy-webclient/templates/default/ and be changed via webdav

As an example to center all webclient solutions add:

Code Block
#forms
{
left: 50%;
width: 940px;
margin-left: -480px;
top: 0px;
bottom: 0px;
position: absolute;
}

For an extensive example customization of the "servoy_web_client_default.css" template see the Alternative CSS for Web Client project on ServoyForge.

(info)  For branding some of the generic web pages that are part of the Servoy environment and are utilized by the Web Client, see Branding.

...