Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #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 be

    Here’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=0

    URL 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,
    Carolin

    #872111

    Hey Carolin,

    What version of IE are you using?

    Best regards,
    Rikard

    #872322

    Hi 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,
    Carolin

    #872548

    Hi,
    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,
    Mike

    #873342

    Hi 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,
    Carolin

    #875565

    Hi,
    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,
    Mike

    #877827

    Hi 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=0

    Do you have any suggestions how to fix issue 1 and 2 for IE 11?

    Thanks!
    Carolin

    #878682

    Hi,
    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,
    Mike

    #880982

    Hi 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=0

    Thanks,
    Carolin

    #881606

    Hi,
    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.
    2017-11-25_071710

    Best regards,
    Mike

    #882434

    Perfect, thanks Mike. Looks good now.

    #882460

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘alignment issues in Internet Explorer: LinkedIn icon and bullets in text’ is closed to new replies.