Met de SeatMe code in de Divi code module ziet het reserveringsformulier niet goed uit. Met deze CSS kun je dat oplossen.
Solution 1 (this one is ok, others not needed)
/* -- START Fix SeatMe widget Styling --*/
div#rm_reservation * {
box-sizing: content-box !important;
}
/* -- END Fix SeatMe widget Styling --*/
Code language: CSS (css)
Solution 2
/* -- START Fix SeatMe widget Styling --*/
div.rm_box_row div.rm_row_title {
width: 70px !important;
}
div.rm_reservation_body {
width: 239px !important;
}
/* -- END Fix SeatMe widget Styling --*/
Code language: CSS (css)
Solution 3
/* -- START Fix SeatMe widget Styling --*/
div.rm_reservation_top {
width: 239px;
}
div.rm_reservation_body {
width: 239px !important;
}
div.rm_gray_box {
width: 235px !important;
}
div.rm_reservation_bottom {
width: 239px;
}
/* -- END Fix SeatMe widget Styling --*/
Code language: CSS (css)