Forums

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

Home Forums CSS Should I Care About Making My Site Fit on 1024×768 Resolution? Re: Should I Care About Making My Site Fit on 1024×768 Resolution?

#122491
chrisburton
Participant

You should just do something like

.page-wrap {
width: 100%;
max-width: 1024px;
}

this way it degrades gracefully. From there, you would just fix the issues via media queries.