Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Need help making a website mobile Reply To: Need help making a website mobile

#250621
Shikkediel
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;
}