Just started using W3.css, and yet havent found a solution for a tiny problem, that seems to appear only on mobile version.
So made a responsive container - row, with 4 different width cells in it. When I have my phone on portrait mode it is loading the site as it supposed to. But when i turn it to landscape - only this container with the 4 cells - jumps back into "large/medium" screen version - cells lined up next to each other and not verticaly... (attached image to make it clear).
Landscape mode - only this container uses different width
Back to portrait from landscape - same problem
Any advice on this?
<div class="w3-cell-row" style="width: 100%; background: #2D9595; padding-left: 3%; padding-right: 3%;">
<div class="w3-container w3-cell w3-mobile" style="padding: 3%">
</div>
<div class="w3-container w3-cell w3-mobile" style="padding: 3%">
</div>
<div class="w3-container w3-cell w3-mobile" style="padding: 3%">
</div>
<div class="w3-container w3-cell w3-mobile" style="padding: 3%">
</div>
</div>
thank you