menu in 2 lines

Hi, i need to make the site (www.portucowork.com)multilingual, so i use weglot translator, the lenguages appears on the main menu, but this menu changes in 2 lines, and need to stay in one.
So, i need to know:

  1. is there any option to aply a widget on the top of the sit? uper than the main menu.
  2. if this is imposible, can i change the menu font size? or how can i do to mantein 1 line menu?

Thanks in advance!

Hello there,

I hope you are doing well today.

  1. You would have to edit the theme’s php code to add a new widget area or try the following plugins:
    Widget Areas – WordPress plugin | WordPress.org
    WP Custom Widget area – WordPress plugin | WordPress.org

  2. You can use the following CSS code to edit the font size and line height by going to Appearance > Customize > Additional CSS and pasting it there.


/*Menu font size and line height*/
#header .top-header .header-navigation ul li a {
    font-size: 13px;
    line-height: 16px;
}

Best Regards,
Support