Hi, I have a two column row in my layout.
I would like to have the two columns to stay next to each other until screen size is under 480px.
I tried the following CSS I found in this forum:
@media (max-width: 480px) {
.dashboard {
float: none;
width: 100%;
display: block;
}
}
Unfortunately it’s not working as I wish, columns collapse much earlier than 480px. However, if I replace the “480” by “1000” it’s working?