Closed (fixed)
Project:
Zero Point
Version:
6.x-1.7
Component:
User interface
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Sep 2009 at 03:09 UTC
Updated:
25 Feb 2010 at 00:12 UTC
Hi folks
I've been having a play with Ubercart on a local install and was thinking of using Zero Point as the theme.
Ubercart uses imagecache for creating and showing thumbnails on product pages.
In Zero Point, thumbnails do not show up in IE8.
If you change IE8 settings to "compatibility view" thumbnails will show up but rather than being inline they are above the product text.
I don't have a live site but I found another person with the same issue as can be seen at http://www.artofwebdesign.co.uk/node/15
Regards
H
PS Great looking theme, thanks for contributing it :)
Comments
Comment #1
florian commentedIt is something related to the modules used but can easily solved using this line in the header:
Please don't share the tip with the guys at artofwebdesign :)
Comment #2
no_idea_yet commentedThanks Florian, that got them showing but still not inline for some reason. You get the node title, then the image, then the text.
Same deal in IE6, IE7 and IE8.
Any ideas how to get the image inline?
PS Never noticed the irony of the example link :)
Comment #3
no_idea_yet commentedHi folks, anyone got any hints re the inline issue?
Comment #4
drupal101 commentedI'm having the same issue with the gallerix module.
Comment #5
mottolini commentedSame problem here!
It works perfectly with IE7, but it doesn't show any thumbnail with IE8. I think the problem is in the theme, because with other themes imagecache and IE8 work smoothly, but not sure how to find a solution...
marco
Comment #6
no_idea_yet commentedHi Marco
Adding the line of code in 1 above to the header fixes the thumbnail issue in IE8 . . . but not the alignment issue.
H
Comment #7
drupal101 commentedIs there a quick fix to this or we going to have to wait for the next release?
Comment #8
drupal101 commentedIs there a quick fix to this or we going to have to wait for the next release?
Comment #9
no_idea_yet commentedChanging status to critical as without the inline issue being resolved sites using certain modules (such as Image Cache and, from 4 above, Gallerix) will not be able to use this theme.
Calling all CSS experts to please enlighten me :)
Comment #10
florian commentedBy the end of October I will post the next release of 0 Point with all those issues solved. The theme will be ready for D7, also.
Comment #11
big_ham commentedFlorian,
Would you mind detailing what you found/fixed to fix the imagecache issue? I am using an artisteer-generated theme and I have the same exact issue/behavior. I don't think the OP's issue is limited to your theme.
Comment #12
florian commentedIt seems to be related to the order style sheets are called. Modules styles are overridden by the theme system and, unfortunately IE is not able to process more then 30, or so.
The idea is to move
print $stylesline to the end of head in page.tpl.php. Try this and let me know.Comment #13
drupdruppalpal commentedit still happens.
it could be the same problem that http://drupal.org/node/512230
it seems that the images are distorted
ie8 does not respect the width of images
Comment #14
SandStorm commentedHi Florian,
any news about the new release of the theme? For some reason some imagecache images work and some don't. Some stopped working all together.
Comment #15
seutje commentedThis is a pretty horrible solution imo, instead of causing the entire document to be interpreted as IE7 would, try to put a width value on the table, like so
Comment #16
SandStorm commentedThis worked nicely for me. Thank you seutje.
Comment #17
drupdruppalpal commenteda trick for imagecache showed inline, put this at _custom-style.css:
.imagecache-presetlalalalalala {
WIDTH:auto;
}
(changing presetlalalalalala for your imagecache preset!)
it works in ff, ie5,ie7,ie8, some problems with ie6 but i dont know if is due to this
Comment #18
florian commentedThank you! Next week I will update the code and come with some new features for the next release.
Comment #19
mottolini commentedThe same problem appear if you are using imagecache thumbnail in a view linked to lightbox2. The workaround suggested by drupdruppalpal works fine with pure thumbnail linked to nodes, but not with lightbox2.
I suggest to add this definition below in _custom-style.css:
#middlecontainer img {
width:auto;
}
Tested with IE8
Comment #20
florian commentedFixed in releases 6.x-1.9 and 6.x-2.2
Comment #21
florian commented