Hello Got a site written in php and at home i work with google chrome and everything look fine, but if i go to my work and want to look and test the site then the site can not be used, you can not enter any tekst in de fields, also the colors are different. at work we use and older IE Is there a script or maintenance i can use or do that solves this problem. Thank you in advance. greetings Scriptsy26
This is something like a browser compatibility issue. It doesn't related to PHP since it is a server side script. It caused by client side script like HTML, CSS or javascript. So you can start tracing with those client side scripts. This is a common thing especially with IE.
Yes thank you for your reply, in IE i have more problems with it, then other browsers, but i want to make it work for everybody, evn though the most people have an uptodate internet browser, so i will look up the client side scripts thanks.
You just need a separate css file for the different browsers. In your case, I see you are already doing that, but it probable needs some corrections, try setting it to just: <!--[if ie]><style type="text/css" media="screen"> @import url(./ie.css);</style><![endif]--> Code (markup): ..then create and edit a new file called ie.css example: copy the content from another css file, make some changes and you will see a difference on an IE browser only.