Home › Forums › Design › Need help making a website mobile › Reply To: Need help making a website mobile
January 28, 2017 at 3:54 am
#250621
Participant
Maybe you could describe the expected layout then. I don’t think it’s a very good idea to redirect to a separate page based on screen size, your current page is only a few steps from being fully responsive and should be perfectly fine for any screen size with some minor adjustments.
I’d recommend this one to start with:
body {
margin: 0;
}
That will in any case remove the horizontal scrollbar.
Edit – then this to give the children back their indentation:
body > * {
padding: 0 10px;
}