CSS Question - how to align columns in a modal

I finally worked it out - I just individually forced the three left hand column sections to a fixed width:

#view_51 > section > div > div:nth-child(1) > div:nth-child(1) {
    width:  450px !important;
    min-width:  450px !important;
    max-width:  450px !important;
}
#view_51 > section > div > div:nth-child(3) > div:nth-child(1) {
    width:  450px !important;
    min-width:  450px !important;
    max-width:  450px !important;
}
#view_51 > section > div > div:nth-child(5) > div:nth-child(1) {
    width:  450px !important;
    min-width:  450px !important;
    max-width:  450px !important;
}

Seems to work well enough, so I’ll call a day.

3 Likes