My website looks awful in Internet Explorer, but I have no problems with Mozilla, Chrome, Opera, etc.
Is there a possibility to restrict access to my website for IE users?
Thanks.
My website looks awful in Internet Explorer, but I have no problems with Mozilla, Chrome, Opera, etc.
Is there a possibility to restrict access to my website for IE users?
Thanks.
This is rather css question. You can add something like this in you HTML:
<!--[if lte IE 8]>
<style>
body {
display:none !important;
}
</style>
<![endif]-->
which will hide your whole body for IE later or equal then 8.
But maybe better way will be to hide content and show some info to atualize your browser instead.