Make language selector fixed in posiiton

Topic summary

A user seeks to make their language selector remain fixed on screen during scrolling on their Shopify store (lux360.net).

Proposed Solution:

Another participant provides CSS code to achieve this:

  • Apply position: fixed to the .language-selector class
  • Position it at bottom: 30px and right: 30px
  • Set z-index: 11111 to keep it above other elements
  • Add white background (#fff)
  • Set height to 40px

Implementation:

The code should be added inside the sub-footer section, as shown in a provided screenshot.

The discussion appears resolved with a working CSS solution, though no confirmation from the original poster is included.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Hello @Luxluxlux360 , try this


    

.language-selector {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 11111;
    background: #fff;
    height: 40px;
}

Add this code inside sub-footer like this given in screnshot above.