Home › Forums › Classic DFFS › My own custom form layout with DFFS running behind it? › Reply To: My own custom form layout with DFFS running behind it?
May 27, 2021 at 16:36
#33629
Sorry for the late reply. This exact layout is not possible because the basic form is a table with two columns and there is no way to use rowspan on the table cells.
This means you can either add the date fields side by side with 3 date fields in each row for a layout like the attached screenshots, or add each date fields side-by-side with one or more other field in multiple rows.
In addition to what you see in the screenshots I used this in Custom CSS:
.customHeader{
font-size:24px;
padding:5px 10px;
background-color:#1B619B;
color:white;
}
.ms-formtable input[type=text]{
width:100%;
box-sizing:border-box;
}
.ms-formtable textarea{
width:100%;
box-sizing:border-box;
}
.ms-formtable select{
width:100%;
box-sizing:border-box;
}
.sbs_FieldTable{
width:100%;
}
Let me know if you have any questions.
Alexander

