Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author megamenu

    (@megamenu)

    Hi moor208,

    Has that screen ever loaded properly? If so, please try disabling any plugins you’ve installed since it was working.

    The problem is probably due to a different plugin outputting a PHP error/warning notice, this invalidates the JSON which is returned by the server when you load the settings.

    I’ve added a workaround to stop other plugins outputting their error messages in the response in the next version.

    Regards,
    Tom

    Thread Starter moor208

    (@moor208)

    I have deactivated our plugins one at a time, seems like the problem is this:

    https://www.ads-software.com/plugins/agp-font-awesome-collection/

    Your plugin is working great now, soon as I figure out how to change my review, I will!

    thank you

    Plugin Author megamenu

    (@megamenu)

    Hi moor,

    Great to hear it’s working now.

    You should see your review and be able to edit it as the bottom of this page, I’d appreciate it if you could update it: https://www.ads-software.com/support/view/plugin-reviews/megamenu

    Regards,
    Tom

    Thread Starter moor208

    (@moor208)

    Updated!

    Also, Another issue is the mobile menu on the tablets we’ve tested it on is way out of alignment.

    Plugin Author megamenu

    (@megamenu)

    Awesome, thanks ??

    The menu is being pushed over due to this custom CSS:

    .navbar .navbar-inner {
      margin: -5px 20px 10px -350px;
      padding-left: 5px;
      max-width: 97%;
    }

    You’ll need to use some media queries to reset/stop that CSS being applied for mobiles/tablets, something like:

    @media only screen and (max-width : 600px) {
        .navbar .navbar-inner {
          margin: 0;
          /* put any other mobile specific css here */
        }
    }

    Regards,
    Tom

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Another issue’ is closed to new replies.