Problem with IE8 and More Info Pages
Problem with IE8 and More Info Pages
I recently upgraded to IE8. My problem is that products I've added to my store after the upgrade are displaying differently than products that were added prior. This problem only occurs in the More Info pages. I installed Firefox and there is no issue whatsoever which is fine for me, but might be a problem for any future customers who are using IE8. Is there anyone else running into this problem and if so do you have any ideas how to fix it? Thank you for your help.
IE8 uses a new rendering engine. Many sites that were fine in IE7 (and current FF) are broken in IE8.
Try inserting this tag in the <head> area:
It tells IE8 to render the page like IE7 did.
m2
Try inserting this tag in the <head> area:
Code: Select all
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
m2
Mike Masin, atStuff LLC
http://m2.atstuff.com
http://m2.atstuff.com
Mike,
Thanks for the info. Just so I have this right, do I insert the code right after <head> in my template? The Modern-MoreInfoPage.sst template begins:
Thanks in advance for walking me through this.
Jim,
Here are is a link to one of the pages that is having problems.
http://cedarspecialties.com/store/recta ... vents.html
All of the More Info Pages under "Gable Vents" are displaying this way. Every other product is fine. The only difference is that the gable vents were all added after the upgrade to IE8.[/code]
Thanks for the info. Just so I have this right, do I insert the code right after <head> in my template? The Modern-MoreInfoPage.sst template begins:
Code: Select all
[-- VAR.TFLink PRODUCT.Name --]
<html>
<head>
<title>[-- IF PRODUCT.MoreInformationTitle --][-- PRODUCT.MoreInformationTitle --][-- ELSE --][-- PRODUCT.Name --][-- END_IF --]</title>
Jim,
Here are is a link to one of the pages that is having problems.
http://cedarspecialties.com/store/recta ... vents.html
All of the More Info Pages under "Gable Vents" are displaying this way. Every other product is fine. The only difference is that the gable vents were all added after the upgrade to IE8.[/code]
Right after the <head> tag is fine.
Before you insert that tag, change the double quotes that bracket the content argument of your meta description tag to a single quote:
Current:
Should be:
and run the page through an HTML validator. The first double quote in the content text closes content=" and the text after it is invalid which could confuse the browser.
Before you insert that tag, change the double quotes that bracket the content argument of your meta description tag to a single quote:
Current:
Code: Select all
<meta name="Description" content="Our gable vents are available in a wide variety of sizes and styles. They are constructed of rot-resistant western red cedar on all exposed exterior components and feature louvers with a "rain-stop"...">
Code: Select all
<meta name="Description" content='Our gable vents are available in a wide variety of sizes and styles. They are constructed of rot-resistant western red cedar on all exposed exterior components and feature louvers with a "rain-stop"...'>
Mike Masin, atStuff LLC
http://m2.atstuff.com
http://m2.atstuff.com
It looks like I have found the problem. All of the products that were giving me problems also had their images uploaded after I upgraded to IE8. I created a product with an image uploaded prior to my upgrade and it had no problems whatsoever. I then deleted an image from a problem product and uploaded it again while in IE7 and the problem was resolved. Now it's just a matter of deleting the images and I am good to go.
Thank you all for your help. It is always appreciated.
Thank you all for your help. It is always appreciated.