Ok, thank you. I’ve managed to fix it for now then. For my reference, and in case anyone else has the same issue, this is what I’ve done!
1) Removed references to .col-lg-5 & .col-lg-7 in the main theme style.css
2) Added this CSS within the customiser:
/* Basket page was screwed at certain tablet sized resolutions */
@media (min-width: 1640px) {
.col-lg-5 {
flex: 0 0 41.6666666667%;
/* max-width: 41.6666666667%; */
max-width: 100%;
}
}
.col-lg-5 {
width:100%;
}
@media (min-width: 1640px) {
.col-lg-7 {
flex: 0 0 58.3333333333%;
/* max-width: 58.3333333333%; */
max-width: 100%;
}
}
.col-lg-7 {
width:100%;
}
Thanks