Page 1 of 1

Fixed height tabs

Posted: 13 Mar 2014
by aau
I am new to form designer. How can I make all the form tabs into same height and width?


Thanks and regards,

Re: Fixed height tabs

Posted: 14 Mar 2014
by Dmitry Kozlov
Hello,

Please, open Forms Designer and put the following code into CSS-editor:

Code: Select all

#fd_tabcontrol-0 {
    height: 400px;
    width: 800px;
} 
Specify your own values for height and width. If you have multiple Tab controls on your form, you can define style for the specific one by its id: #fd_tabcontrol-1, #fd_tabcontrol-2 etc.

Re: Fixed height tabs

Posted: 14 Mar 2014
by aau
Works like a charm. Thank you very munch.