-
AuthorPosts
-
November 2, 2017 at 11:22 pm #871875
Hi guys,
this problem is only visible in Internet Explorer. The alignments are correct on all other browsers.
These 2 things don’t align properly in Internet Explorer:
1. the LinkedIn icon has no space above it
2. the bullets align underneath the logo and not next to the text where they should beHere’s what it looks like in Internet Explorer (left side) and other browsers (right side):
1. https://www.dropbox.com/s/ovuztav9rqet3tj/OurTeam.jpg?dl=0
2. https://www.dropbox.com/s/mndhl2wizvov3n4/OurWork.JPG?dl=0URL to website:
1. http://www.robinsoninsight.com/our-team/
2. http://www.robinsoninsight.com/our-work/Can you please suggest what code I can add in Quick CSS that solves the Internet Explorer alignment issues but doesn’t change anything in other browsers.
Thanks,
CarolinNovember 3, 2017 at 12:02 pm #872111November 3, 2017 at 10:22 pm #872322Hi Rikkard,
On my PC laptop I have IE 11 and on my PC desktop I have Microsoft Edge.
On Edge the Team icon looks fine but the bullets are still not where they are supposed to sit.Thanks,
CarolinNovember 4, 2017 at 4:41 pm #872548Hi,
For issue 1, I do see the issue in mobile view, up to 426px, in Edge, so try this quick css:@media only screen and (max-width: 426px) { .page-id-3689 .avia-builder-el-21 { padding-top: 20px!important; } }
but not in higher views, but if you do try adjusting the max-width to match when you see the issue, also adjust the padding number to suit your needs.
For 2, this issue is because Edge doesn’t render list-style-position correctly when they are set to “outside” to fix it we need to set them “inside” but also make the second line of the list text indent.
First try this quick css:.page-id-3274 .entry-content-wrapper ul { list-style: disc inside!important; }
If that doesn’t work right try this instead:
.page-id-3274 .avia_textblock ul li:before { display: list-item; content: ""; list-style: disc inside; float: left; position: absolute; left: 0; } .page-id-3274 .avia_textblock ul li { list-style: none; padding-left: 13px; }
If that doesn’t work, please include a admin login in the private content area so we can take a closer look.
Please clear site and browser cache.Best regards,
MikeNovember 6, 2017 at 9:09 pm #873342Hi Mike,
thanks for your help.
Issue 1 is fixed in Edge. Do you have any suggestions for IE 11?
For Issue 2 I tried both quick css codes but nothing has changed.
Please see the login in the private data.
Thanks,
CarolinNovember 11, 2017 at 7:19 pm #875565Hi,
For issue 2 I logged in and added this code to only target the Edge browser:@supports (-ms-ime-align:auto) { .page-id-3274 .entry-content-wrapper ul { list-style: disc inside!important; } }
and then cleared your sites cache, please clear your browser cache and check.
Best regards,
MikeNovember 16, 2017 at 11:17 pm #877827Hi Mike,
For issue 2 it looks better in Edge but the text that wraps to the second line doesn’t align with the rest of the text. See screenshot below:
https://www.dropbox.com/s/a0azvux3fj4ovgv/alignment_Edge.JPG?dl=0Do you have any suggestions how to fix issue 1 and 2 for IE 11?
Thanks!
CarolinNovember 19, 2017 at 12:12 am #878682Hi,
For issue 2 targeting IE11 I added:@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .page-id-3274 .entry-content-wrapper ul { list-style: disc inside!important; } }
For issue 1 targeting IE11 I added:
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .page-id-3689 .avia-builder-el-21 { padding-top: 20px!important; } }
Best regards,
MikeNovember 24, 2017 at 12:22 am #880982Hi Mike,
thanks, issue 1 is now fixed!
For issue 2 in Edge and IE 11 the text that wraps to the second line still doesn’t align with the rest of the text. See screenshot below:
https://www.dropbox.com/s/a0azvux3fj4ovgv/alignment_Edge.JPG?dl=0Thanks,
CarolinNovember 25, 2017 at 2:25 pm #881606Hi,
For issue 2, I changed to “list-style-position: disc outside” and added “margin-left: 7em” to move it closer to the text, So the new code looks like this:@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .page-id-3274 .entry-content-wrapper ul { list-style-position: disc outside!important; margin-left: 7em!important; } } @supports (-ms-ime-align:auto) { .page-id-3274 .entry-content-wrapper ul { list-style-position: disc outside!important; margin-left: 7em!important; } }
Please clear your cache and check.
Best regards,
MikeNovember 28, 2017 at 12:51 am #882434Perfect, thanks Mike. Looks good now.
November 28, 2017 at 3:02 am #882460 -
AuthorPosts
- The topic ‘alignment issues in Internet Explorer: LinkedIn icon and bullets in text’ is closed to new replies.