configure the free space between the form boxes
Best Answers
-
seth_coussens Member Ninja IT Monkey ✭✭✭✭You can do something like this in your custom.css file:
/*Decrease space between form rows*/ .row { margin-top: 0px; margin-bottom: 0px; } .row+.row { margin-top: 0px; } /*Decrease panel padding*/ .panel { padding: 0px; }
Keep in mind this very basic code will change those elements in other forms as well and possibly other areas. You could target it more exactly if you desired.
5 -
james_kleinschnitz Cireson Dev, Product Owner Advanced IT Monkey ✭✭✭Also if you preface Seth's CSS with the .defined-form class you can ensure these rules only get's applied to the forms and not other aspects of the UI.
/*Decrease space between form rows*/ .defined-form .row { margin-top: 0px; margin-bottom: 0px; } .defined-form .row+.row { margin-top: 0px; } /*Decrease panel padding*/ .defined-form .panel { padding: 0px; }
6
Answers
You may be able to accomplish this via css customizations, please take a look at this KB article as it may get you closer to your goal: https://support.cireson.com/KnowledgeBase/View/43#/
Keep in mind this very basic code will change those elements in other forms as well and possibly other areas. You could target it more exactly if you desired.
Hello carrie, hello seth,
thank you for the very fast answer. I will try this code at our customer.
Grretings
/*Decrease space between form rows*/ .defined-form .row { margin-top: 0px; margin-bottom: 0px; } .defined-form .row+.row { margin-top: 0px; } /*Decrease panel padding*/ .defined-form .panel { padding: 0px; }