Can't get the fields to go smaller like others

  • stiglersports
    Asked on February 7, 2019 at 2:51 PM

    I am using a template and when I duplicate the drop down box from the others it make them longer which no longer fits where I need them to go..

  • Mike
    Replied on February 7, 2019 at 4:20 PM

    The size of the original fields is adjusted with injected CSS.

    Cant get the fields to go smaller like others Image 1 Screenshot 40

    We can do the same for the new fields. Get the IDs of the new fields and add them to the CSS.

    Cant get the fields to go smaller like others Image 2 Screenshot 51

    For example, if the IDs are 75, 76, 77, add them to the CSS like this:

    li#id_10,

    li#id_11,

    li#id_44,

    li#id_15,

    li#id_16,

    li#id_45,

    li#id_20,

    li#id_21,

    li#id_46,

    li#id_25,

    li#id_26,

    li#id_47,

    li#id_75,

    li#id_76,

    li#id_77{

        width : 14% !important;

        padding : 0 !important;

        padding-right : 4% !important;

    }

    Cant get the fields to go smaller like others Image 3 Screenshot 62