-
AuthorPosts
-
March 3, 2015 at 10:18 pm #405445
Hi,
Our users ( mainly government ) are still using IE8 on Windows 7 and we receive the following problems on our website:
– Buttons not visible
– Some images not visible
– Hotspot Image not visibleLink in private section.
Thank you,
March 5, 2015 at 5:20 pm #406524Hi ybema!
I checked in Windows 7 IE 11 emulation tools for IE8 but it seems to look ok. Have you checked in an actual IE browser? Is compatibility view turned off and zoom set to 100%?
Best regards,
Elliott- This reply was modified 9 years, 8 months ago by Elliott.
March 5, 2015 at 5:35 pm #406538This reply has been marked as private.March 6, 2015 at 8:54 am #406872Hi!
We tested it on an IE8 emulation and it looks fine. Please ask your client to disable compatibility view mode. The only issue that I see is that the color section background is not resizing properly because IE8 doesn’t support the css background-size property. To fix it, add this to the Quick CSS field:
.avia-msie .home #av_section_1 .av-parallax { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://nltrademate.nl/wp-content/uploads/2015/02/NLTradeMate.jpg', sizingMethod='scale'); -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://nltrademate.nl/wp-content/uploads/2015/02/NLTradeMate.jpg', sizingMethod='scale')"; }
This is how the site looks like on IE8 emulation (ignore the ie inspector):
Regards,
IsmaelMarch 6, 2015 at 12:24 pm #406944This reply has been marked as private.March 7, 2015 at 3:05 pm #407498Hey!
I’m not sure if this is going to help but please try to add this to the Quick CSS field to fix the download buttons:
.download-frontpage img { width: inherit; /* Make images fill their parent's space. Solves IE8. */ max-width: 100%; /* Add !important if needed. */ height: auto; /* Add !important if needed. */ }
Or
.download-frontpage img { max-width:100%; height: auto; } /* Enough everywhere except IE8. */ @media screen { .download-frontpage img { width: auto }} /* Prevent height distortion in IE8. */
Reference: http://stackoverflow.com/questions/8610077/height-auto-in-internet-explorer-8-and-below
Since IE8 doesn’t support border radius by default, you will have to live without the round testimonial image or install a third party script to make it work. I don’t think it’s worth the effort. Try to use this to fix the height:
.avia-testimonial-image img { height: 80px; min-height: 80px; width: inherit; max-width: 100%; }
Best regards,
IsmaelMarch 7, 2015 at 11:42 pm #407583This reply has been marked as private.March 9, 2015 at 2:48 am #407815Hi!
Again, IE8 does not support border radius and css animation. You will have to hire a freelance developer to make it work on IE8, by creating jquery scripts or adding a third party plugin. There are lots of premium themes out there but you will have a hard time finding one that supports IE8 or one that actually works with it. If you want to hide the image hotspot on ie8, use this:
.avia-msie-8 .av-hotspot-image-container { display: none; }
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.