Font leading on menu scroll bar

  • Unknown's avatar

    When i scroll sub headings from a main menu item not all of the scrolled items are visible. How do I change the font leading so that they all fit in the scroll bar and are visible?
    Infinite scroll is activated in Settings.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    I’m not sure I understand the problem you’re having with those subheadings. Can you make a screenshot of the problem you see? (You can upload screenshots to your Media Library under Media > Add New in your dashboard, or you can use an online service like Snaggy.)

    That will help me understand what you’re seeing in your browser so I can help you with it. :)

  • Unknown's avatar
  • Unknown's avatar

    here is a screen shot

  • Unknown's avatar

    Hi there,

    I’m sorry for the delay getting back to you about this. I see what you mean about not all of the items in that submenu being visible on the screen. You can use Custom CSS (part of your WordPress.com Premium plan) to change the padding around those submenu items.

    Here is the CSS your theme is currently using for that submenu’s padding:

    @media screen and (min-width: 783px) {
    .primary-navigation ul ul a {
    padding: 18px 12px;
    }
    }

    To add custom CSS, go to your My Sites page and click the Customize link under the blog’s title. In the Customizer, open the CSS section and in the CSS editor there, you can enter the following CSS:

    @media screen and (min-width: 783px) {
    .primary-navigation ul ul a {
    padding: 9px 12px;
    }
    }

    That will reduce the padding above and below each submenu item from 18 pixels to 9 pixels. You can change those values to get the effect you’d like.

    If you’d like more help with CSS, I’d also recommend posting in the CSS Customization forum — that’s the best place to get help customizing your theme from expert staff and volunteers.

  • The topic ‘Font leading on menu scroll bar’ is closed to new replies.