Posted by julian_m on 11/24/05 09:58
I'm thinking to do the following to be able to render the page
according to the user resolution
[pseudo-code]
<html>
<head>
<meta blah blah blah
......
if userselect = 800x600 {
<link rel="stylesheet" type="text/css" href="style800.css" >
}elseif userselect = 1024x768 {
<link rel="stylesheet" type="text/css" href="style1024.css" >
}elseif userselect = 640x480 {
<link rel="stylesheet" type="text/css" href="style640.css" >
}
[/pseudo-code]
Note that it will be coded in php, and the user will select certain
resolution (userselect parameter) given his own preferences
What do you think about this aproach?
regards - julian
Navigation:
[Reply to this message]
|