This topic has 4 replies, 2 voices, and was last updated 6 years, 10 months ago ago by Rose Tyler
Because I put the button to change the language on left side top bar.
I want to show it on a smartphone. If it does not show, it will not be able to change the language.
Help me please.
Hello,
Please try to add this code in Theme Options > Styling > Custom css > Custom css for mobile:
.top-bar {
display: block;
}
.top-bar .languages-area {
display: block;
float: none;
text-align: center;
margin: auto;
}
.top-bar .languages-area > div:first-child, .top-bar .top-links {
display: none;
}
.top-bar .languages-area > div {
padding: 0;
margin: 0;
}
.home .fullwidthbanner-container {
margin-top: 10% !important;
}
Regards
Thank you very much.
You’re welcome!
Also, you may change this part of code:
.top-bar .languages-area > div:first-child, .top-bar .top-links {
display: none;
}
to
.top-bar .top-links {
display: none;
}
and
.top-bar .languages-area {
display: block;
float: none;
text-align: center;
margin: auto;
}
to
.top-bar .languages-area {
display: block;
float: none;
text-align: center;
margin: auto;
max-width: 100%;
}
+ add this code:
.top-bar .languages-area .menu > li > a {
padding: 0px 5px;
}
#menu-top-left-header-menu-en-1 {
margin-right: 10px;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up