Viewing 6 replies - 1 through 6 (of 6 total)
  • Anonymous User 18525946

    (@anonymized-18525946)

    Hey there, @bsmith50 ?? I hope you had a good weekend!

    Bummer. Sorry to hear you’re builder is mucking up.

    This sort of thing usually crops up when your theme or another one of your plugins isn’t playing nicely with Happyforms. To suss out what’s causing this, would you please temporarily switch to another theme? Does the builder work now?

    If not, what happens if you temporarily disable all your other plugins? Any luck?

    Let us know! Once we track down the conflict we’ll see how we can help.

    • This reply was modified 2 years, 4 months ago by Anonymous User 18525946.
    Thread Starter bsmith50

    (@bsmith50)

    Good Morning it looks like the Riode theme is causing the issue. Once I changed the theme I was able to see the menu.

    I see, @bsmith50!

    I think Riode theme has enforced some styling to the customizer panel, which overrides the styles set by Happyforms. I think a short snippet can help fix it!

    Try this snippet below. You can add it to your child theme’s function.php file. Or you can use a plugin like Code Snippets.

    add_action( 'happyforms_customize_enqueue_scripts', function() {
    
       wp_add_inline_style( 'happyforms-customize',
           '.wp-full-overlay.expanded { margin-left: min( 35%, calc( 35% - calc( 35% - 600px ) ) ) !important; }'
       );
    
    }, 50 );

    That should do it! Let us know how that goes. ??

    Anonymous User 18525946

    (@anonymized-18525946)

    Just checking in, @bsmith50. Did Ray’s suggestion help?

    Do you still need a hand?

    Thread Starter bsmith50

    (@bsmith50)

    That code has resolved that issue! Thank You!

    Anonymous User 18525946

    (@anonymized-18525946)

    Glad to hear this ??

    Let us know if you have any more questions!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Menus on top of each other’ is closed to new replies.