Jump to content

Problems

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
8 replies to this topic

#1
dirkfirst

dirkfirst

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 354 posts
I created my site in a high resolution, But when a low resolution user comes it messes up. How can I make it so it doesn't change?

#2
Lop

Lop

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,172 posts
There is no fix, thats the problem.

What you can do is create a low resolution version and then detect what resolution the user is in. Then direct him to the correct version - high or low.

#3
brackett

brackett

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
Use relative (percentage based) widths, not pixels.

#4
dirkfirst

dirkfirst

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 354 posts

brackett said:

Use relative (percentage based) widths, not pixels.

I am, it still looks like crap in lower resolutions. I'm not sure why, I am using a WYSIWYG editor though, not pure HTML.

#5
brackett

brackett

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
Hmm...looking like "crap" is pretty subjective. Perhaps an example or better explanation of the problem? Why HTML editor are you using?

#6
Frantic

Frantic

    Learning Programmer

  • Members
  • PipPipPip
  • 91 posts
I think he means it doesnt fit the screen properly.

If you use 100% width rather than a pixel amount then it has to fit.

Try wrapping your whole site in a div or table with 100% (or smaller) width.

#7
DevilsCharm

DevilsCharm

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 884 posts
When people enter your site, you could have a prompt page asking what resolution they would prefer.

#8
egon

egon

    Newbie

  • Members
  • PipPip
  • 13 posts
The problem is this: people are still using resolutions lower than 800x600. Always create your site for that resolution. If you have a resolution lower than that, then you have to understand you are going to have issues, and are asking for problems.

#9
Lop

Lop

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,172 posts
I wonder when people will stop using 800x600... This makes making webpages hard.