Closed simonjvardy closed 4 years ago
The carousel was hidden at large sizes by adding the Bootstrap class to carousel container
<div class="row"
<div class="col-12 d-lg-none">...</div>
</div>
An extra section was added with the images and tables duplicated from the carousel and created in a 3 column layout at larger display sizes and bigger but hidden at smaller display sizes using the following Bootstrap classes:
<div class="row">
<div class="d-none d-lg-block col-lg-4">...</div>
</div>
Describe the bug The menu carousel was designed to be used on mobile phones and small display sizes. When the reponsive design is displayed on medium and large display sizes the carousel images become too large and take up the whole display.
To Reproduce Steps to reproduce the behavior:
Expected behavior The image is responsive so maintains the full width of 100% using the Bootstrap Class
.col-12
Screenshots None
Desktop (please complete the following information):
Additional context The carousel design for smaller screen sizes is no longer appropriate for medium and larger display sizes due to the images resizing. New design layout is needed.