This topic has 4 replies, 2 voices, and was last updated 5 years, 11 months ago ago by Rose Tyler
Hello,
On top menu of mobile website, there are social media icons. But I want there to be the Sign in and Register tabs. Kindly guide me through this. https://prnt.sc/lmtgbg
Regards
Hello,
Please add this code in Global custom css:
@media only screen and (max-width: 992px) {
.top-bar .top-links .links {
display: block;
}
.top-bar .languages-area{
display: none;
}
}
Regards
Top icons have been removed but now it shows plain black bar. I want there to be the “Sign In” and “Register” options.
Please guide.
Hello,
Please change the previous code to:
@media only screen and (max-width: 992px) {
.top-bar .top-links .links {
display: block !important;
}
.top-bar .languages-area{
display: none;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up