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.