Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1. #1
    Join Date
    Jul 2009
    Location
    Arkansas
    Posts
    177
    Plugin Contributions
    0

    Default Chrome, Firefox, and IE9 Problem

    Hello,

    Not sure if I'm in the right place or not, if not just let me know.

    I just finished uploading several thousand new images for some new items. I don't know if this problem was happening before or not as it's been a long time since I checked it.

    The site looks good in Chrome and Firefox but in IE9 some of the images are enormous and distort the whole page.

    Here is an example page to view in the different browsers if anyone would like to take a look and give me any suggestions. The page looks good in Chrome and Firefox, only messes up in IE9. Some of the images may be missing, I haven't gone back to pick up the missing ones yet, found this problem first.

    http://www.missyscollectibles.com/in...dex&cPath=2020

    Not all pages are messed up like this in IE9 but there are a lot of them that are.

    Thanks for any suggestions, I'm not a programmer but if it's easy enough I can do some editing if needed.

    Jim
    Last edited by Ajeh; 28 Mar 2014 at 12:11 AM. Reason: remove zenid - never post the zenid or zenadminid on forums, emails etc.
    Jim Stiles
    http://www.missyscollectibles.com
    Coming home to Zen Cart!

  2. #2
    Join Date
    Jul 2012
    Posts
    16,751
    Plugin Contributions
    17

    Default Re: Chrome, Firefox, and IE9 Problem

    Quote Originally Posted by RiverCity View Post
    Hello,

    Not sure if I'm in the right place or not, if not just let me know.

    I just finished uploading several thousand new images for some new items. I don't know if this problem was happening before or not as it's been a long time since I checked it.

    The site looks good in Chrome and Firefox but in IE9 some of the images are enormous and distort the whole page.

    Here is an example page to view in the different browsers if anyone would like to take a look and give me any suggestions. The page looks good in Chrome and Firefox, only messes up in IE9. Some of the images may be missing, I haven't gone back to pick up the missing ones yet, found this problem first.

    http://www.missyscollectibles.com/in...dex&cPath=2020

    Not all pages are messed up like this in IE9 but there are a lot of them that are.

    Thanks for any suggestions, I'm not a programmer but if it's easy enough I can do some editing if needed.

    Jim
    I haven't gone to look at the affected pages, but for those pages on which it isn't a problem is the product a different type than on those that it is? Typically distortion may occur because of things like CSS rules (or lack of) applicable to the browser being used. I'm not a CSS whiz, so may not be able to give a satisfactory solution. I'm able to modify what is present and am still working on learning that language.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #3
    Join Date
    Jul 2009
    Location
    Arkansas
    Posts
    177
    Plugin Contributions
    0

    Default Re: Chrome, Firefox, and IE9 Problem

    I have two suppliers that I use and the image problem is with products from both. I have the New Products showing below the products on the category pages which have the huge images and they look good, it's the images above the New Product section, when I click on one of the images and go to the product's page, everything is good. It appears that it's only on the category pages that the images are huge. Again, this is only when using IE9 that it happens, the other browsers are good.
    Jim Stiles
    http://www.missyscollectibles.com
    Coming home to Zen Cart!

  4. #4
    Join Date
    Jul 2012
    Posts
    16,751
    Plugin Contributions
    17

    Default Re: Chrome, Firefox, and IE9 Problem

    Quote Originally Posted by RiverCity View Post
    I have two suppliers that I use and the image problem is with products from both. I have the New Products showing below the products on the category pages which have the huge images and they look good, it's the images above the New Product section, when I click on one of the images and go to the product's page, everything is good. It appears that it's only on the category pages that the images are huge. Again, this is only when using IE9 that it happens, the other browsers are good.
    So my question related to product type was not about the item(s) being sold, but whether the items were product_general, document_general, etc...

    That said, if it is only happening on the categories page(s), then it is definetely CSS related. I'll see if I can take a look. I happen to have IE9 available.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  5. #5
    Join Date
    Jul 2012
    Posts
    16,751
    Plugin Contributions
    17

    Default Re: Chrome, Firefox, and IE9 Problem

    Okay, so it seems there are a couple of things going on. In IE9, the responsive.css file is loaded and the steps are taken in it to modify the view. I didn't test this in multiple browsers (Just Firefox and IE9), but it looks like if in the includes/templates/business_blue/css/responsive_theme.css on line 2 or where the following statement is declare: This function might help, change

    .listingProductImage {
    max-width: none !important;
    }

    to:

    .listingProductImage {
    max-width: 100% !important;
    }

    or just remove the !important part from it... In IE9, the !important is forcing all statements after that to be ignored...
    Try it out on a few different browsers. It may modify how the other browsere resond.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #6
    Join Date
    Jul 2009
    Location
    Arkansas
    Posts
    177
    Plugin Contributions
    0

    Default Re: Chrome, Firefox, and IE9 Problem

    Quote Originally Posted by mc12345678 View Post
    Okay, so it seems there are a couple of things going on. In IE9, the responsive.css file is loaded and the steps are taken in it to modify the view. I didn't test this in multiple browsers (Just Firefox and IE9), but it looks like if in the includes/templates/business_blue/css/responsive_theme.css on line 2 or where the following statement is declare: This function might help, change

    .listingProductImage {
    max-width: none !important;
    }

    to:

    .listingProductImage {
    max-width: 100% !important;
    }

    or just remove the !important part from it... In IE9, the !important is forcing all statements after that to be ignored...
    Try it out on a few different browsers. It may modify how the other browsere resond.

    Ok, thanks, I'll give it a try and see what happens, I know nothing about css but your instructions are clear enough I should be able to give it a try. I'll let you know if it works.

    Thanks
    Jim Stiles
    http://www.missyscollectibles.com
    Coming home to Zen Cart!

  7. #7
    Join Date
    Jul 2009
    Location
    Arkansas
    Posts
    177
    Plugin Contributions
    0

    Default Re: Chrome, Firefox, and IE9 Problem

    Quote Originally Posted by RiverCity View Post
    Ok, thanks, I'll give it a try and see what happens, I know nothing about css but your instructions are clear enough I should be able to give it a try. I'll let you know if it works.

    Thanks

    That seems to have helped quite a bit, at least good enough. On one page, one image is still larger than it should be but at least they aren't overlapping each other like they were. Don't have Firefox on this computer but Chrome still looked good after making the change.

    Thanks for the help,

    Jim
    Jim Stiles
    http://www.missyscollectibles.com
    Coming home to Zen Cart!

  8. #8
    Join Date
    Jul 2012
    Posts
    16,751
    Plugin Contributions
    17

    Default Re: Chrome, Firefox, and IE9 Problem

    Quote Originally Posted by RiverCity View Post
    That seems to have helped quite a bit, at least good enough. On one page, one image is still larger than it should be but at least they aren't overlapping each other like they were. Don't have Firefox on this computer but Chrome still looked good after making the change.

    Thanks for the help,

    Jim
    Ihad checked it also on firefox with the changes, and didn't see a problem.

    As for this one image that has the problem, could you identify the eb address and I could maybe assist? (Or someone else that passes by. :) )
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #9
    Join Date
    Jul 2009
    Location
    Arkansas
    Posts
    177
    Plugin Contributions
    0

    Default Re: Chrome, Firefox, and IE9 Problem

    Quote Originally Posted by mc12345678 View Post
    Ihad checked it also on firefox with the changes, and didn't see a problem.

    As for this one image that has the problem, could you identify the eb address and I could maybe assist? (Or someone else that passes by. :) )


    The url to the one I mentioned is: http://www.missyscollectibles.com/in...dex&cPath=2020

    IE9 is what I used for this address, it'll be obvious which product it is when you see it, it's the middle item on the top row. All the images in IE9 are larger than they should be but I can live with how they are, at least all but this one. It's the only one I can find just spot checking that is still too big. If you scroll down to the New Products for March, below the products on that page, they are the correct size that all the images should be but again, except for this one, I could live with how they are if it's going to be too complicated for me to fix it.

    Thanks again,

    Jim
    Jim Stiles
    http://www.missyscollectibles.com
    Coming home to Zen Cart!

  10. #10
    Join Date
    Jul 2012
    Posts
    16,751
    Plugin Contributions
    17

    Default Re: Chrome, Firefox, and IE9 Problem

    Quote Originally Posted by RiverCity View Post
    The url to the one I mentioned is: http://www.missyscollectibles.com/in...dex&cPath=2020

    IE9 is what I used for this address, it'll be obvious which product it is when you see it, it's the middle item on the top row. All the images in IE9 are larger than they should be but I can live with how they are, at least all but this one. It's the only one I can find just spot checking that is still too big. If you scroll down to the New Products for March, below the products on that page, they are the correct size that all the images should be but again, except for this one, I could live with how they are if it's going to be too complicated for me to fix it.

    Thanks again,

    Jim
    Not to get your hopes up that an answer is already determined, but wanted to say that it probably is the same type of situation where the !important flag is assigned before another rule and the other rule doesn't get a chance to play. :)

    In your other tests, did you try to resize the window as well? Seems that this is a responsive (or responsive like) template.other devices also would be good to test it on like mobile's etc...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v153 SSL problem with browsers (chrome and firefox but not internet explorer 11)
    By keithduong in forum Installing on a Linux/Unix Server
    Replies: 10
    Last Post: 16 Oct 2014, 02:38 PM
  2. v150 Placement of Images and Forms different between IE, Firefox, and Chrome
    By coreyalderin in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 4 Sep 2012, 02:33 PM
  3. ie7 and chrome different than ie8 and firefox
    By Congerman in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 14 Aug 2010, 04:48 PM
  4. IE Versus Firefox and Chrome
    By cs_jono in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 25 Mar 2010, 05:53 PM
  5. logo.gif - ok with chrome and firefox but IE has a problem - help
    By voodoo1967 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Jul 2009, 10:32 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR