Answer the question
In order to leave comments, you need to log in
Displaying a static site on a mobile device?
Good afternoon. There is a site getsale.com.ua with a fixed layout. When viewed from a mobile phone, the site adapts to the screen size. But the problem is that there are differences on different phones. On one, everything is fine, on the other, the footer moved out, on the third, the text overlapped each other. The browser is the same everywhere - chrome. Can someone tell me how to solve this display problem? Or at least in which direction you need to dig?
Answer the question
In order to leave comments, you need to log in
All phones use different screen resolutions and environment variables, this introduces distortions in the design of statics that are not designed for such distortions (just try to cut your browser on your site - it's just ahtung!).
Digging towards responsiveness, like re-layout using Bootstrap
It is not necessary to convert to bootstrap.
Use media for different screen resolutions and make the necessary edits. You have this code at the end of your design/css/style.css file:
@media only screen and (max-width: 480px){
footer p {
font-size: 5px;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question