• Resolved alFrame

    (@alframe)


    Hi Malihu,

    Why would I have a different offset in FireFox than in Google Chrome on both Mac and Windows?

    Here’s the URL: https://dev03.fullframestudios.ch

    Actually it’s correct in Chrome which is the end of the header should touch the beginning of the page. There’s 18 pixels offset in FireFox. It also works correctly in Safari (Mac), IE 11, Edge and Opera (Windows).

    Thanks & Cheers

    Alex

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author malihu

    (@malihu)

    It’s probably the way Firefox renders empty inline elements. It seems to apply font-size and line-height as their height (not sure why it does that… it should normally render such elements like the rest of the browsers).

    To fix this and be on the safe-side, add the following to your CSS:

    
    a._mPS2id-t:empty{
      display: block;
      height: 0;
      width: 0;
    }
    
    Thread Starter alFrame

    (@alframe)

    Thank you very much!! That fixed the problem.

    Perfect & really appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Different offset in FireFox and Chrome’ is closed to new replies.