This topic has 2 replies, 2 voices, and was last updated 7 years, 1 months ago ago by Amzy Leel
Hello! How to make the right side of the top bar appear in the mobile version of the site?http://prntscr.com/hccbfc
hi,
add this css code in 8theme options > styling > custom css > global custom css
@media only screen and (max-width: 1030px){
.top-bar {
display: block !important;
}
.top-bar .languages-area {
display: block;
max-width: 100%;
text-align: center;
width: 100%;
float: none;
}
.top-bar .top-links .topbar-widget {
display: inline-block;
}
.top-bar .top-links {
display: none;
}
.top-links ul {
float: none;
}
.languages-area>div:first-child {
border: none;
padding-right: 0;
margin-right: 0;
}
}
Regards,
You must be logged in to reply to this topic.Log in/Sign up