Odd top border in Microsoft Edge

Hi! We are noticing that there is a top border on each page of our site only in Microsoft Edge. The site appears perfectly everywhere else! We’ve tried different CSS to get rid of it, but then it affects the slider underneath. Is it possible this is a bug in MS Edge? Is there a possible work-around?

Thank you!

Hi @jquinn33,

Thank you for reaching out to us. I checked your setup and you had wrong color codes in your custom CSS which Microsoft Edge doesn’t recognize. I went ahead and fixed it for you by replacing your code with the following code:

.x-navbar {
    border-bottom: 0;
    background-color: transparent;
    box-shadow: 0 0.15em 0.35em 0 rgba(0, 0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

Please clear your browser’s cache and check your site again. Cheers!

Oh my gosh… You guys are too good to be true!!! It looks PERFECT!!

THANK YOU THANK YOU THANK YOU!!! :slight_smile:

You’re most welcome! :slight_smile:

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