• Resolved jmeow

    (@jmeow)


    This is strange. I have read through many other posts here with fixed position problems, but I haven’t seen anything like this. My fixed widget is only “fixed” in Chrome, but not Firefox.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor Max Bond

    (@max-bond)

    Hello!

    I have found solution.
    Your theme has a style (inline in each page):

    body {
        -moz-transform: scale(1, 1);
        zoom: 0.9;
        zoom: 100%;
        margin-right: 40px !important;
    }

    -moz-transform: scale(1, 1); – this is the problem property (it’s Mozilla specific). Dispable or override it. Injection of this style should help:

    body {
      -moz-transform: none !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Widget is in fixed position on Chrome but not Firefox’ is closed to new replies.