I want to add a down arrow icon to the menu with the child menu. Can anyone suggest what I need to do?
Thanks in advance,
William
I want to add a down arrow icon to the menu with the child menu. Can anyone suggest what I need to do?
Thanks in advance,
William
Hey @WilliamSm,
You can do this using css after pseudo class. Something like this:
.child-class:after {
content: "▼";
padding: 12px 8px;
position: absolute;
right: 10px;
top: 0;
z-index: 1;
text-align: center;
width: 10%;
height: 100%;
pointer-events: none;
}