White line on top section separator in IE11

Hi,

On IE11 there is a white line showing on the top section separator (see attached).

It doesn’t show on Chrome, Safari and Firefox - please can you advise what the issue is?

This is the website that I’m having the issue on.

https://www.integrated-construction.co.uk/about-integrated-construction/

Thanks
Paul

Hi @noznewman,

Thanks for reaching out.

Looks like it’s IE rendering glitch, and the only solution is overriding the bottom positioning just for IE. Please add this CSS to your global custom CSS.

   @media all and (-ms-high-contrast:none) {
     *::-ms-backdrop, .x-separator-bottom-angle-in { 
                  bottom: 1px !important;
         } /* IE11 */
     }

Thanks!

IE is so frustrating…:slight_smile:

Thanks Rad that code in css has done the trick.

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.