Search code examples
cssxformsxsltforms

Changing the style of the xforms-xsltforms controls


Anyone known how to change the css of the controls on XSLTForms of AgenceXml? I'm trying by changing the xsltforms.css but the changes doesn't seem to apply. Also tryed to style controls by specifying a style and class attrs, but it had no effect.

<xf:input ref="name" incremental="true"  class="form-control" style="color:red;">
    <xf:label>Name</xf:label>
    <xf:hint appearance="minimal">E.g. Marie</xf:hint>
</xf:input>

So, what should the right way? Thanks a lot!


Solution

  • The best way to know how to modify XSLTForms CSS stylesheet, or add your own styles, is to use a browser debugger and look at corresponding HTML tags.

    --Alain