Hi,
I noticed that when you do a code segment as such,
<link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxform_dhx_skyblue.css">
...
{ type: "label", label: "Test Label" },
...
the label always appears in bold.
From the docs, it is mentioned that you can use className on the label to adjust the appearance via css.
I tried the following, but nothing worked.
<style type="text/css">
.myLabel { text-decoration: none; }
.myLabel2 label { text-decoration: none; }
<style>
...
{ type: "label", label: "Test Label", className: "myLabel" },
{ type: "label", label: "Test Label", className: "myLabel2" },
...
Short of modifying the original CSS, is there any other way to unbold the label?