I'm using Simplicity template for a multilanguage website with Falang extension to manage languages.
How can I publish language switcher module near main menu, on the right side?
I can't find any position for it.
Thank you.
div.mod-languages {
left: 50%;
margin-left: 575px;
position: absolute;
top: 30px;
}
div.mod-languages {
left: 50%;
margin-left: 575px;
position: fixed;
top: 19px;
z-index: 10000;
}
teitbite wrote:You will also need an adjustment for mobile devices, but this I can help with when You will put this code in css file.
@media only screen and (max-width:1225px) {
div.mod-languages {
background: #fff none repeat scroll 0 0;
border-radius: 5px 0 0 5px;
left: auto;
margin-left: 0;
padding: 0 0 0 10px;
position: fixed;
right: 0;
top: 75px;
width: 37px;
z-index: 10000;
}
}