Reputation: 1
I'm looking for a theme to use on wordpress. Sometimes a page will load correctly on a resized web browser but not on mobile, even with the same dimensions it will load with some kind of bug (usually a misalignement). In this page for example ( http://demo.stylishthemes.co/mesh2-event ) the middle part moves to the right when on mobile. What causes problem like this? Isn't a mobile made to run as a "small desktop window"?
I tried edditing some parameters on Layer 3 div but no success.
<!-- LAYER NR. 3 -->
´´´´
Upvotes: 0
Views: 43
Reputation: 11
esto va de acuerdo como esta estructurado en CSS, bien sabemos que una pagina web esta compuesto basicamente de HTML y CSS. un ejemplo
@media screen and (max-width: 600px) {
aside {
flex-direction:column;
}
footer {
justify-content:space-around;
}
}
Upvotes: 1