Configurable list CSS coding

  • sgrami
    Asked on July 6, 2016 at 9:24 AM

    Hi,

    I am trying to find the right CSS coding that will allow me to space out the fields and make each box bigger.

    Configurable list CSS coding Image 1 Screenshot 30

     

    The picture above represent my fields of configuration.

     

    Configurable list CSS coding Image 2 Screenshot 41

     

    The Staffing Information is the configurable list as you can see the fields are so close to each other and the boxes are too small.

     

     

    Thanks,

  • victor
    Replied on July 6, 2016 at 10:51 AM

    You add more spacing between the columns, you can add the following CSS code:

    #list th {

    padding-right: 30px;

    }

     

    #list td {

    padding-right: 30px;

    }

    Configurable list CSS coding Image 1 Screenshot 20

    Please let us know if this helps.