Isathbella
Isathbella

Reputation: 1

Why a resized desktop broswer and a mobile in terms of sizing are not the same when opening a web page? Example

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

Answers (1)

Alxn Alxnez
Alxn Alxnez

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

Related Questions