-
AuthorPosts
-
September 27, 2014 at 4:00 pm #201641
I have just discovered a few serious problems with the display of our site in both IE11 and IE10. Everything on the site displays correctly in Firefox and Chrome.
SITE: http://signumgroup.com(1)
In IE11, on all of the site, including HOME and all other PAGES – the Vertical Scroll bar is “hidden” from view unless you mouse over the area in which it is supposed to appear. It then appears and you can scroll the site. Unfortunately, on some computers I tested, when you navigate to a ‘sub-page’ away from HOME the Vertical Scroll bar does not appear until you mouse over the area and ‘click’ your mouse. This is a serious issue, as it confuses the visitor as to why they are unable to scroll the page.I’d like to resolve that as soon as possible if anyone has any ideas as to why that is happening. I searched through all the threads and have not seen anyone mention this issue.
(2)
In IE 10 only (this problem is not present in Firefox, Chrome or IE11) images that appear in articles on every page are for some reason enlarged to the width of the article. Many articles have small images that appear in them and when viewed in IE10 those images are resized to display much larger than they are supposed to be.I have attached Screenshots of each of these issues. Thank you for the help.

September 27, 2014 at 7:47 pm #550907— UPDATE —
I have resolved the issue with the vanishing scroll bar in IE 11. By adding the following line of code, starting at line 22 in the HEADER.PHP file. The vertical scroll bar is now displayed at all times.
<!-- SCROLL BAR FIX -->
<style type="text/css">
html {
-ms-overflow-style: scrollbar;
}
</style>
<!-- SCROLL BAR FIX -->I still however have not resolved the issue with images being resized to full width of articles in IE 10. Looks as though the problem exists in all previous versions of IE from what I can tell. If anyone has any thought, please let me know, I really need to get that site displaying correctly in older browser versions as quickly as I can.
Saguaros Moderator
Saguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
September 29, 2014 at 7:51 pm #551037—UPDATE 2—
Thanks Saguaros, from the JATC support team, has identified the issue and supplied a fix. Here is the fix for the issue I had with the incorrect over-sized display of images in content blocks while viewing the site with IE 10, IE 9, and IE 8.
My Joomla version: 3.3.3 – My JA Biz Version 1.1.2
The fix for this issue id to change the below code in: /templates/ja_biz/local/css/themes/red/template.css
.article-intro img,
.article-content img {
display: block;
width: 100% 9;
/* max-width: 100%; */
height: auto;
}Change to this:
.article-intro img,
.article-content img {
display: block;
height: auto;
}That is all that was needed, and images now display at the correct size in older IE browsers. Hope this helps.
AuthorPostsViewing 4 posts - 1 through 4 (of 4 total)This topic contains 4 replies, has 2 voices, and was last updated by
citrixxps 10 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum

