Path missing from IE conditional comments
blairski - March 27, 2009 - 14:48
| Project: | Clean |
| Version: | 6.x-1.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
Hello,
Great base theme, thanks a lot!
I have just noticed a small bug in the page.tpl.php. The path to the IE style sheets is missing the css directory.
It is currently:
I changed it to this to fix it:

#1
Sorry forgot the code tags above
It is currently:
<!--[if IE]><link rel="stylesheet" href="<?php print $path ?>ie.css" type="text/css"><![endif]-->
<!--[if lte IE 6]><link rel="stylesheet" href="<?php print $path ?>ie6.css" type="text/css"><![endif]-->
I changed to this:
<!--[if IE]><link rel="stylesheet" href="<?php print $path ?>css/ie.css" type="text/css"><![endif]-->
<!--[if lte IE 6]><link rel="stylesheet" href="<?php print $path ?>css/ie6.css" type="text/css"><![endif]-->
#2
I noticed this myself this week while building a new site. I was sure I changed it!
I'll update in CVS. Thanks for your issue post.
#3
Committed to DRUPAL-6--1:
http://drupal.org/cvs?commit=189748
Thanks!
#4
Automatically closed -- issue fixed for 2 weeks with no activity.