Som nevnt tidligere bruker du JavaScript til dette:
Kode:
<script type="text/javascript">
var wrongwidth=800
var wrongheight=600
if (screen.width==wrongwidth||screen.height==wrongheight){
window.location = "http://www.google.com/"
}
</script>
Denne kodefnutten sender deg til google.com, dersom skjermoppløsningen er 800x600..
Men som Pong sier, så skal ikke dette være nødvendig om du kan css, for da anpasser alt seg til skjerminnstillingene..
Den største feilen de fleste gjør når de lager stilarket (CSS) er å bruke "px" på tekst..
Om du bruker "em" i steden så anpasser tekststørrelsen seg skjerminnstillingene..
px skal kun brukes på bilder og rammer (border)...
En liten "jukselapp" for px i em-form :
font-size:10px -font-size:0.63em
font-size:11px - font-size:0.69em
font-size:12px - font-size:0.75em
font-size:13px - font-size:0.82em
font-size:14px - font-size:0.88em
font-size:15px - font-size:0.93em
font-size:16px - font-size:1em
font-size:17px - font-size:1.06em
font-size:18px - font-size:1.12em
font-size:19px - font-size:1.19em
font-size:20px - font-size:1.25em
font-size:21px - font-size:1.32em
font-size:22px - font-size:1.38em
font-size:23px - font-size:1.44em
font-size:24px - font-size:1.5em
font-size:25px - font-size:1.56em
font-size:26px - font-size:1.63em
font-size:27px - font-size:1.69em
font-size:28px - font-size:1.75em
font-size:29px - font-size:1.82em
font-size:30px - font-size:1.88em
font-size:31px - font-size:1.94em
font-size:32px - font-size:2.01em
Om du bare gjør det lille enkle her, så hjelper det mye på dette med å vise likt i alle skjermstørrelser
/S