Page 1 of 1
Field Set Title Issue
Posted: Fri Apr 06, 2012 4:21 pm
by rmullis
I have defined a field set on a screen with several output fields and text labels in it. I have also specified a title for the field set. The default test color for the title is black. I try to change the text color on the title, but it remains black. The Visual Designer allows me to select a new color, but the title text color never changes to the new color in Visual Designer or when I run the program.
Are you not able to change the text color for field set titles?
Re: Field Set Title Issue
Posted: Fri Apr 06, 2012 9:00 pm
by esdaled
You can mix html tags into most title properties (e.g. fieldsets, panels).
For example, set the value property of the fieldset to:
Code: Select all
<p style="color:red;">Field Set Title</p>
Re: Field Set Title Issue
Posted: Mon Apr 09, 2012 11:29 am
by David
It looks like the "color" property is getting set on the <fieldset> element, instead of the <legend> element that specifies the title.
I'm not sure if this is intentional or not -- will check with the development team. Meanwhile, the earler suggestion should work and also another way is to assign a CSS class and then use a descendant selector in the style sheet to pick up the <legend> element, like this:
Code: Select all
fieldset.myClass legend {
color: red;
}
Re: Field Set Title Issue
Posted: Tue Apr 17, 2012 8:20 pm
by Alex
This will be fixed in the next release of Profound UI.