• In my navigation menu, I currently have a downward arrow () appearing after the text for items that have submenus. I’d like to replace this arrow with my own custom image (for example, an SVG or PNG icon).

    • This topic was modified 1 month, 1 week ago by nayan9718.
Viewing 1 replies (of 1 total)
  • It can be done with CSS. I did a quick try with the default theme, and used something like:

    .wp-block-navigation .wp-block-navigation-item {
    flex-direction: row-reverse;
    }

    It worked. It will require some more CSS to move the child page popover (dropdown menu container on hover ) .

    You may need to use a child theme or a custom CSS plugin to add this.

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.