How to setup fixed height for the component In Two step Form?

How to setup fixed height for the component ?

Above are two step form . So I want to make save button of both step at same level .

You will have to figure out what height you want but you can add this to your css tab of that page, you have to add one for every page:

.form-page-1{
height:530px;
}
.form-page-2{
height:530px;
}
.form-page-3{
height:530px;
}
.form-page-4{
height:530px;
}

Optionally you could add a class to every column on each tab called “multiformHeight” and then just add this to the css tab:

.multiformHeight{
height:530px
}

This should also work but haven’t tested it this way.

Thanks its working .

1 Like