
Hi, Martyn!
does anyone know .. while viewing this site in IE 6 (CURSED Proggy) the overlay doesnt fill the whole screen ?
The problem is that your url generates wrong. There is two ? chars in the url and the later should be &. But what version of MaxiGallery are you using? The first version did not use MODx makeUrl api call to generate urls and this could happen at that time. It’s fixed in the newest versions though.
When I use the "pics_per_page" setting the system generates links to child "pages", however those links return the 404 page! Here is an example of the URL generated:
site.org/index.php?q=20030404.html?page=2
That’s the problem. The makeUrl api call cannot cope with prefixes that allready has ? in it.. I’ll note this to the devteam and see if we can get it resolved.
Prefix="index.php?q=";
Quote from: Lizard at Jun 19, 2006, 09:45 AMHi, Martyn!
does anyone know .. while viewing this site in IE 6 (CURSED Proggy) the overlay doesnt fill the whole screen ?
I don’t know what you’re talking about... I don’t get the overlay with IE6 at all? But I remember that you had the same issue with that bittersweet embrace site too, and this one uses the same template.. it’s some margin setting at the css that’s causing this..

Yes, the overlay is made for IE inside conditional css statements, just remove it and overlay should be gone in IE.
any way of turning off the overlay on ie?
$slidebox_css_str = '
<!--[if gte IE 5.5]>
<![if lt IE 7]>
<style type="text/css">
* html #overlay{
background-color: #333;
back\ground-color: transparent;
background-image: url(' . $modx->config['site_url'] . 'assets/snippets/maxigallery/slidebox/blank.gif);
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src="' . $modx->config['site_url'] . 'assets/snippets/maxigallery/slidebox/overlay.png", sizingMethod="scale");
</style>
<![endif]>
<![endif]-->';$slidebox_css_str = '';
Quote from: CwnAnnwn at Jun 21, 2006, 01:21 AMThat’s the problem. The makeUrl api call cannot cope with prefixes that allready has ? in it.. I’ll note this to the devteam and see if we can get it resolved.
Prefix="index.php?q=";
This discussion is closed to further replies. Keep calm and carry on.