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

florian’s picture

It is something related to the modules used but can easily solved using this line in the header:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

Please don't share the tip with the guys at artofwebdesign :)

no_idea_yet’s picture

Thanks 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 :)

no_idea_yet’s picture

Hi folks, anyone got any hints re the inline issue?

drupal101’s picture

I'm having the same issue with the gallerix module.

mottolini’s picture

Same 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

no_idea_yet’s picture

Hi Marco

Adding the line of code in 1 above to the header fixes the thumbnail issue in IE8 . . . but not the alignment issue.

H

drupal101’s picture

Is there a quick fix to this or we going to have to wait for the next release?

drupal101’s picture

Is there a quick fix to this or we going to have to wait for the next release?

no_idea_yet’s picture

Priority: Normal » Critical

Changing 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 :)

florian’s picture

By 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.

big_ham’s picture

Florian,

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.

florian’s picture

It 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 $styles line to the end of head in page.tpl.php. Try this and let me know.

drupdruppalpal’s picture

it 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

SandStorm’s picture

Hi 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.

seutje’s picture

This 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

table.views-view-grid { width: 100%; }
SandStorm’s picture

This worked nicely for me. Thank you seutje.

drupdruppalpal’s picture

a 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

florian’s picture

Thank you! Next week I will update the code and come with some new features for the next release.

mottolini’s picture

The 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

florian’s picture

Status: Active » Fixed

Fixed in releases 6.x-1.9 and 6.x-2.2

florian’s picture

Status: Fixed » Closed (fixed)