font size drop down menu
-
Hi
I have a drop down list of categories accessed from the primary menu (under Themes) but as the font is quite large some of the categories are not visible.
Is there any way I can use CSS to reduce the font and make the whole list visible?Susan
The blog I need help with is: (visible only to logged in users)
-
-
Hi
Thanks for your reply.
The hidden categories are Love, Prayer and Meditation, Sunrise and Working with the Light.
Susan
-
-
-
Hi, susanjohnson34.
If I understand you, the problem is those categories are shown, but you need to scroll down and you would like anyone to be visible without scroll.
You can modify your font-size (currently 17px):
.wf-active #site-nav ul li li a { font-size: 12px; }You can also reduce the space between two menu options, with padding parameter. (First number, 5px, refers to vertical (top and bottom) padding and second, 10 px in this case, fixes left and right spaces to the border). Currently you have 10px 10px.
.wf-active #site-nav ul li li a { padding: 5px 10px; }Finally, as you can see, there are menu options that takes two lines because menu column is not wide enough. You could widen this submenu area with css code:
#site-nav ul.sub-menu li, #site-nav ul.children li { width: 250px; }I hope you will find a convenient combination of these three approaches to fit your needs. Make us know if you have further questions. :)
-
-
- The topic ‘font size drop down menu’ is closed to new replies.