Page 1 of 1
tab resizing
Posted: 30 Oct 2017
by jennifer.eckard
We are using the Form designer and the tab feature. The client wants each tab to be the same size whether there is content in the tab or not. Currently if there is no content in the tab it shrinks down. Please see the screen shots. How can I fix the size of the tabs.
Re: tab resizing
Posted: 31 Oct 2017
by Nikita Kurguzov
Hello, Jennifer!
Easiest way to control proportions of different tabs is to add a Table inside of each tab and place all tab contents inside the Table. Give each Table the same CSS class and then use CSS editor to set width and height for the Table. This will adjust the tab size.
For example, you can give each Table class
tab-table and add this code to CSS editor:
Code: Select all
.tab-table{
height: 500px;
width: 500px;
}
Adjust width and height for your form and you should be good!