Site logo

Archived topic

Increase size of dropdown arrows.

3 replies · Started by John on December 22, 2017

Viewing posts 1–4 of 4

Hi,

I find the dropdown arrows in the menus a little bit unobtrusive, especially in the mobile menu.
Is there a CSS to increase the size or the weight of this arrow on desktop and mobile independantly ? Or can the arrow be replaced by an more prominent icon ?

Thanks,
John

Hi there,

Desktop:

@media (min-width:769px) {
    .menu-item-has-children .dropdown-menu-toggle {
        font-size: 20px;
    }
}

Mobile:

@media (max-width: 768px) {
    .menu-item-has-children .dropdown-menu-toggle {
        font-size: 16px;
    }
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Hi Leo,

That worked fone, Thanks.

John

No problem!

This archived topic is closed to new replies.