Hello,
I have a question about the secondary menu when viewed in browsersize for mobile phones.:
How can I change the space it uses at the top? Is it for instance possible to get the telephone number in the first line with the little icons?
On desktop it looks like that:
Thank you for suggestions
Bernd
Hi Bernd!
You can add this to your custom CSS.
.responsive #header .social_bookmarks { width: auto !important; }
But the menu and the phone number are too long so the phone number will have to break to the next line.
Best regards,
Elliott
Hi Elliott,
thanks for tip, but it is not really satisfying…
Hi!
Decrease the font of the top menu:
@media only screen and (max-width: 767px) {
.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
float: left;
width: auto;
text-align: left;
margin: 0;
position: relative;
padding-left: 0;
top: 2px;
}
.sub_menu>ul>li>a, .sub_menu>div>ul>li>a {
font-size: 9px;
padding: 2px 0;
}
}
Remove browser cache then reload the page.
Regards,
Ismael
Thank you Ismael,
that looks better now!