I need to separate ( with a conditional call) the css from ie7, ie6 and ie8. This always should be like that as the css can be totally different between them…
• I think you have already separated ie 8 with the file ie8.css?
• where is the call for ie8 from the index.php
But I beleive that you mix ie6 with ie7 in the same file ie.php. (this is not good)
Now I need to separate or add css file to separate ie6/ie7)
I will use probably something like:
<!–>
<style type=”text/css”>@import ‘/css/ie6.php’;</style>
<!–>
<!–>
<style type=”text/css”>@import ‘/css/ie7.css’;</style>
<!–>
Insert that in the index.php
You have probably a call in index.php to a librairie of calls to cleanup the index.php head (because I do not see any call to ie8.css), should I insert my conditionals there?