Submenu & Mobile Submenu font
Hello
It is strange that the submenu fonts and sizes cannot be adjusted for the website through the options. Most themes offer that adjustability.
My Question for MOBILE DEVICES sideslide submenu:
1. select submenu font name
2. adjust submenu font size
3. adjust submenu line height adjust.
Right now the font on the mobile submenu is too large, different font style and the
line spacing is not enough as it overlaps as well as the submenu item is 2 lines of text in some cases.
line spacing is not enough as it overlaps as well as the submenu item is 2 lines of text in some cases.
I saw some css in the comments how to adjust the submenu font style and size which works for desktops, but it did not change for Mobile devices and the text overlaps as well.
This is the CSS i have set for desktop submenu below that i found. How can i do the same for mobile submenu?
Here is the link to the temporary domain where i am building my website, in case you need it: http://l79.23a.myftpupload.com/
/*
Submenu font and size
*/
#Top_bar .menu > li ul li a {
font-family: "Open Sans Condensed" !important;
}
#Top_bar .menu li ul li a span { font-size: 19px; }
Submenu font and size
*/
#Top_bar .menu > li ul li a {
font-family: "Open Sans Condensed" !important;
}
#Top_bar .menu li ul li a span { font-size: 19px; }
Comments
Mobile Device Submenu font and size
*/
@media (max-width:767px) {
#Side_slide .menu > li ul li a {
font-family: "Open Sans Condensed" !important;
line-height: 24px !important;
}
#Side_slide #Top_bar .menu li ul li a span { font-size: 12px !important; }
}