How to center and spread the values of form tabs

  • SpokaneScape
    Asked on February 27, 2019 at 7:24 PM

    is there a way to center and spread the vertical form tabs at the top of the form?

  • Kevin Support Team Lead
    Replied on February 27, 2019 at 8:56 PM

    You can center the tabs with this code: 

    ul#tabs-list {

        margin-left: auto;

        margin-right: auto;

    }

    You can handle the tabs with this code, note that the current code only changes the tabs height and width, but with the selector you can change the margins or anything else you want: 

    li[id*="tab"]{

        width: 100px;

        height: 40px;

    }

    This guide will help you injecting the code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 



  • SpokaneScape
    Replied on February 28, 2019 at 11:43 AM
    Thank you
    [cid:image001.png@01D4CF3C.E6148980]
    ...