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.
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:
position: fixed to the .language-selector classbottom: 30px and right: 30pxz-index: 11111 to keep it above other elements#fff)40pxImplementation:
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.
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.