Home › Forums › Modern DFFS › Suggestion for revision to naming convention for the ModernDFFS User Manual
Tagged: User Manual
- This topic has 7 replies, 3 voices, and was last updated 1 year, 3 months ago by Wendi Watson.
-
AuthorPosts
-
-
May 5, 2023 at 17:24 #36781
Alex;
I’m just now getting a chance to start learning Modern DFFS, and I’m seriously impressed!! I look forward to becoming as comfortable with Modern DFFS as I was with Classic DFFS. One small suggestion: I love that you update the user manual so often. I’ve seen three versions of it now (I may well have missed some). My suggestion is to change the naming convention of the manual to ModernDFFS_UserManual_[year].[month].[day]. I think that would make it easy for users accustomed to either the US date format or the European date format to know exactly what date is being referred to.
-
May 6, 2023 at 20:16 #36787
Thanks!
I’ll try to get the naming changed for the next revision – I didn’t really think of it as versioning, but changed the name to prevent caching (the browser loading the old one) when publishing changes.Alexander
-
August 16, 2023 at 14:11 #37036
Hello, I am looking for the ModernDFFS user manual to see how to change the color text for field labels. Can you point me to where it is?
-
August 16, 2023 at 15:44 #37037
-
August 16, 2023 at 16:39 #37038
Hi,
The user manual does not specifically mention how to change the color, but to change for one field you just right click on the field > Field Properties > Field label style:color:red;
You can change the color on all field labels by adding this to your custom css:
.formLabel_SUFFIX{ color:red!important; }
Alexander
-
August 16, 2023 at 20:32 #37039
Thank you Alexander, this works perfectly. I am not sure this is the right forum, but in a multiline field, how would I add a table into it so that it comes up as a template table in that field with each new item? Would that go in the Custom CSS or within the field itself?
-
August 16, 2023 at 21:41 #37040
You can create a rule that triggers on “Form is loaded” and use the “Set field value” action to insert the HTML code – something like this (I inserted a table in a multiline text field and then used the Tools menu > Source code to get the HTML code):
<table style="border-collapse: collapse; width: 99.7692%;" border="1"> <colgroup> <col style="width: 33.2564%;"> <col style="width: 33.2564%;"> <col style="width: 33.2564%;"> </colgroup> <tbody> <tr> <td>Column A</td> <td>Column B</td> <td>Column C</td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
Alexander
- This reply was modified 1 year, 3 months ago by Alexander Bautz. Reason: Fixed HTML code
-
-
August 16, 2023 at 23:09 #37042
Perfect again, this works great, thank you!
-
-
AuthorPosts
- You must be logged in to reply to this topic.