Einschränkungen für den IE6
Wie Christian in seinem Hackthenet-Weblog, möchte auch ich die IE6 Nutzer dazu auffordern ihren Browser zu updaten. Es kann ja nicht sein, dass Leute immernoch mit einem 7 Jahre alten Browser durch das Internet surfen! Manche können aber auch gar nichts dafür. Zum Beispiel die jenigen welche in einem Grossbetrieb keine Möglichkeit haben einen neueren Browser zu installieren. Diese möchte ich nicht ausschliesen. Desshalb habe ich mich dazu entschieden, meinen Blog nur noch in Graustufen und mit einem Hinweis auf ein Update den IE6 Nutzern bereit zu stellen.
Ich möchte die IE6 Nutzer bitten ihren Browser auf den neusten Stand zu bringen!
Wenn auch du den IE6-Nutzern zeigen willst, dass sie einen Uraltbrowser verwenden, dann gehe wie folgt vor:
- Füge folgendes in dein Stylsheet ein:
/*IE-Only*/
#ieonly {
background-color: red;
color: #fff;
text-align: center;
padding: 8px;
}#ieonly a {
color: #fff;
font-weight: bold;
} - Folgendes gehört in den Header (direkt vor dem -Tag) eures Templates
<!–[if lt IE 7]>
<style type="text/css">
#wrap {
filter: gray;
}
</style>
<![endif]–>
- Und direkt nach dem -Tag kommt folgendes:
<!–[if lt IE 7]><div id="ieonly">
Du benutzt einen veralteten Webbrowser, bitte mach ein <a href="http://tinyurl.com/2t89wt">Update</a> oder wechsel am besten zu <a href="http://tinyurl.com/5djod">Firefox</a>.
</div>
<![endif]–>Natürlich können die Tinyurls’s mit den Original-URL’s ersetzt werden. Ich habe die Tinyurl’s nur aus Darstellungsgründen in das Beispiel eingefügt.
Das sollte nun euren WordPress-Blog für den IE6 in schwarz-weiss darstellen.
Proxy exceptions in Firefox and Internet Explorer
In my office I have to configure a proxy for several Browsers on different Workstations. Also I’ve to add some exceptions for the proxy. I don’t want that local IP’s passes through the proxy. So i have to add it to the exception list in the browser.
In the Internet Explorer you can use a * (star) as wildcard like this 172.17.*. But in Firefox that won’t work. In Firefox you have to add the whole Network-ID with the relevant suffix like this 172.17.0.0/16.
Examples:
You want the whole local IP-Address range in your exception list. Ask your network administrator for the IP-Configuration.
IP: 172.17.72.123
Subnet: 255.255.0.0
When you get this data from your administrator you have to enter the following in your exception list:
IE: 172.17.*
FF: 172.17.0.0/16
If you get diffrent data such as this:
IP: 192.168.0.12
Subnet: 255.255.255.0
Then enter the following in your exception list:
IE: 192.168.0.*
FF: 192.168.0.0/24
I hope that is a usefully hint. If you have any questions please post a comment.