I've been designing a data-driven website to fit perfectly on a screen resolution of 1280x1024 (the res I'm using).
Although it might just be easier to ignore the different resolutions possible and inform my users "This is best viewed at a screen resolution bla, bla, bla", I'd much rather do it right and scale the text and graphics to fit the user's browser window regardless of his/her screen res.
Because I don't like working in the dark ages, I don't use tables for layout... I find them frustrating and confusing to work with for layout purposes.
So, I'm using CSS and <div> tags
I've considered using margin-left: abc%; but it's a real chore to make my page look the way I want when I do it that way. Especially on the higher resolutions (1400+), then it looks like there's a huge open space on my page where I don't want one.
Any help with this will be greatly appreciated.
Although it might just be easier to ignore the different resolutions possible and inform my users "This is best viewed at a screen resolution bla, bla, bla", I'd much rather do it right and scale the text and graphics to fit the user's browser window regardless of his/her screen res.
Because I don't like working in the dark ages, I don't use tables for layout... I find them frustrating and confusing to work with for layout purposes.
So, I'm using CSS and <div> tags
I've considered using margin-left: abc%; but it's a real chore to make my page look the way I want when I do it that way. Especially on the higher resolutions (1400+), then it looks like there's a huge open space on my page where I don't want one.
Any help with this will be greatly appreciated.