• Hello,

    I have got a drop down that is quite long but some of the links at the bottom are cut off due to not scrolling with the page. Is there a way to make the menu scroll?

    Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • On your custom css you could try putting:

    .site-main .comment-navigation,
    .site-main .paging-navigation,
    .site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: visible;

    Currently on the theme stylesheet the overflow is hidden for the main menu.

    .site-main .comment-navigation,
    .site-main .paging-navigation,
    .site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;

    Anonymous User 6077519

    (@anonymized-6077519)

    You can change position: fixed to position: absolute so you don’t get scrollbars like when you change overflow to visible. However doing this means that the navigation menu will not stay in a fixed position on the screen whenever you are scrolling up/down.

    Speaking of the menu… has anyone found where to edit to change it’s color (background? text?) Hopefully both but for now just the main menu background and hover colors.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Scrolling menu’ is closed to new replies.