How can I make the language menu item scroll with my webpage?

Hi,

im looking to make the language ENGLISH button to scroll with page. Right not it goes over my search bar then under the menu

my site is https://luxurymrkt.com

hello there

I visited your website and I can see that the language switcher button is not fixed to the top of the page and it overlaps with the search bar and menu when scrolling.

To fix this issue, you can add CSS code to fix the position of the language switcher button to the top of the page. Here’s the code you can try adding to your website:

#lang_sel {
  position: fixed;
  top: 0;
  z-index: 9999;
  right: 15px;
}

You can add this code to your theme’s custom CSS or use a plugin that allows you to add custom CSS to your website. Once you have added this code, the language switcher button should stay fixed to the top of the page as you scroll down.