Can I format the forms tabs widget so the tabs are on the side instead of on the top?

  • kristenjoi
    Asked on October 21, 2019 at 3:45 PM

    Hell, just wondering if there is a way to format the form tabs widget so that the tabs show up vertically on the side instead of horizontally on the top?



    Jotform Thread 2009030 Screenshot
  • Mike
    Replied on October 21, 2019 at 5:31 PM

    This should be possible with injected CSS. For example here is the CSS that can be added to the form in order to move the tabs to the left side on 1440px and wider screens:

    @media (min-width: 1440px) {
    .tabs-list { 
    display: flex;
    flex-direction: column;
    max-width: 200px;
    position: fixed;
    left: 0;
    }
    }

    Result:

    Can I format the forms tabs widget so the tabs are on the side instead of on the top? Image 1 Screenshot 20