PDA

View Full Version : Bug Report


kennyr394089
11-19-2009, 08:55 AM
I have found something that does not appear to be working correctly.

From the Add Form Dialog, I select Registration for the type of form,
then I select Sharp for the Design.

Click edit for the design.

Select Fieldset from select box.

Select Fieldset Description from the select box that appears under that one.

The alignment field says left, but no matter what you do with that setting, the description text is always aligned right.

This is seen in both the preview, and I have seen it in FF 3.5.


Kenny

Jason Byrnes
11-19-2009, 12:44 PM
thank you for bringing this to our attention, I have logged this as a bug in our bug base.


in the mean time, you can manually modify the css to change the alignment of the Fieldset description. In the CSSFormBuilder/FD_Sharp_Default.css file, Find:
form.Sharp_Default span.fieldsetDescription {
color:#b40000;
text-align:right;
float:right;
margin-bottom:5px;
}



and change it to:
form.Sharp_Default span.fieldsetDescription {
color:#b40000;
text-align:left;
float:right;
margin-bottom:5px;
display: block;
width:100%;
}