Tagged: display, responsive
Hi there,
I just noticed that my website displays oddly when I shrink the window. As I reduce the size of the window the main content area of the website disappears, only to reappear when it the window size is much smaller. It just did this a few times and when I tried to replicate it a third time it behaved normally. Weird.Can you help?
Hey 1lizcollins,
Add this to quick css:
.html_boxed #main{
overflow:visible!important;
}
Best regards,
Jordan Shannon
Thanks for the quick reply. I tried the code and it definitely fixed the responsive issue but it caused our calendar search bar area to look weird (it didn’t stay within the confines of the content area and spilled onto the background – see screenshot). I’ve removed the code for now, as the calendar was impacted negatively. Any other things we can try?
Hi,
I see, try the following instead:
@media only screen and (max-width: 992px) {
.html_boxed #main{
overflow:visible!important;
}}
Best regards,
Jordan Shannon
Yes, ok! That seems to have done it. You can mark this as solved. Thanks Jordan :)