Closed (fixed)
Project:
Zero Point
Version:
6.x-1.10
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Dec 2009 at 11:58 UTC
Updated:
1 Mar 2010 at 08:09 UTC
In page.tpl.php:
<!--[if lte IE 6]>
<?php if (theme_get_setting('menutype')== '1') { ?>
<script type="text/javascript" src="/<?php print $directory; ?>/js/suckerfish.js"></script>
<?php } ?>
<link type="text/css" rel="stylesheet" media="all" href="/<?php print $directory; ?>/css/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" media="all" href="/<?php print $directory; ?>/css/ie7.css" />
<![endif]-->
should be:
<!--[if lte IE 6]>
<?php if (theme_get_setting('menutype')== '1') { ?>
<script type="text/javascript" src="<?php print $base_path . $directory; ?>/js/suckerfish.js"></script>
<?php } ?>
<link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path . $directory; ?>/css/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path . $directory; ?>/css/ie7.css" />
<![endif]-->
to work with Drupal installed, for example in "/drupal/" subdirectory.
The same issue applies to maintenance-page.tpl.php.
Comments
Comment #1
florian commentedFixed in releases 6.x-1.10 and 6.x-2.3
Comment #2
florian commentedComment #3
megatech commentedThis still seems to be a problem with ie 6 and 7 running zeropoint 6.x-1.10. i show different results depending on how page is called..
IE 6
http://server.com/drupal = display issues. images called locally are not displayed
http://drupal.server.com = images called locally are displayed.
IE 6 dosen't render the page correctly no matter how it's called. alignments are off and the rotate.php displays the image with a grey background.
IE 7
http://server.com/drupal = display issues. images called locally are not displayed. images called with rotate.php are not displayed
http://drupal.server.com everything is ok
Safari, Firefox and IE 8 work great!
any idea's whats going on?
Comment #4
megatech commentedComment #5
florian commentedYou should upgrade to the last version or modify the code as it was proposed by Albert here.