Center align fields and entered input

  • photoguy123
    Asked on January 7, 2016 at 4:43 AM
    3) if you have a good way to center align the ids 113 to 284. they appear together on page 2. and also center align the entered input
  • Ben
    Replied on January 7, 2016 at 9:58 AM

    If I understood you correctly you would like to have the fields centered out on your form, but I am not sure what is the exact layout that you would like to have with them - since they are small.

    I would however add this CSS:

    #id_113, #id_121, #id_130, #id_271, #id_276, #id_284 {
        display: block;
        margin: 0 auto;
        min-width: 33%;
        text-align: center;
    }
    #id_113 input, #id_121 input, #id_130 input, #id_271 input, #id_276 input, #id_284 input {
        text-align: center;
    }

    To make it look like the following:

    Center align fields and entered input Image 1 Screenshot 20

    Do let us know if you wanted to have a bit different layout instead and we would be happy to assist with the same.