• marcusabs

    (@marcusabs)


    Hi.

    i’ve tried several css codes to get the mobile version buttom menu to go upwards but I can’t seem to get it to work. Can anybody help?

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • WPMajestic

    (@wpmajestic)

    Hello @marcusabs,

    You have some margin code added there which is causing problems -> https://prnt.sc/xNfcsPWQrKQu

    If that code is removed, button is aligned with the menu -> https://prnt.sc/Ub3IgjqGgIzu

    Try to find where you added margins, it must be somewhere in the settings, if you can’t find it, you can use this CSS code (by adding it to Custom/Additional CSS section in the Customizer):

    .header-widget-area[data-section="sidebar-widgets-header-widget-1"] {
    margin-top: 0;
    margin-bottom: 0;
    }

    If that does not work, try to use !important

    .header-widget-area[data-section="sidebar-widgets-header-widget-1"] {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    }

    It’s better to avoid using !important unless you absolutely have to use it, it would be ideal if you could find where those margins are added.

    Kind regards.

    WPMajestic

    (@wpmajestic)

    Sorry, I missed that you were writing about mobile menu version, I saw that button on desktop is not aligned and figured that you wanted that fixed.

    On the mobile device, I see the menu at the bottom, if you with to show menu items you need to correct CSS -> https://prnt.sc/aSB1mZGiqRWG – you or someone else added that CSS for the widget area, if you can locate it and disable it, you can push menu items up.

    Kind Regards.

    Thread Starter marcusabs

    (@marcusabs)

    Thank you for responding.

    Sorry, I wasn’t clear. I added a menu at the bottom of the mobile version, and it can only be seen there. I inserted a WordPress navigation menu, and I want the menu to be a drop-up menu instead of a drop-down menu. How can I do that?

    WPMajestic

    (@wpmajestic)

    Hello @marcusabs,

    As I mentioned, you need to find and remove this code -> https://prnt.sc/aSB1mZGiqRWG – then submenu will open on top. Check the widget settings and look for padding and other variables, you can tweak them in the Elementor settings for that widget.

    Kind Regards.

    Thread Starter marcusabs

    (@marcusabs)

    Thank you for your responds.

    So now I added a wordpress menu instead. The old was a mix between css, java and html and it got confusing. How do I get the wordpress nav menu to be a drop up instead?

    Best regards, Marcus

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.