CMS Development

WilliamSm
Member

How to add down arrow to drop down menu?

SOLVE

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

 

0 Upvotes
1 Accepted solution
Kevin-C
Solution
Recognized Expert | Partner
Recognized Expert | Partner

How to add down arrow to drop down menu?

SOLVE

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;
}
Kevin Cornett - Sr. Solutions Architect @ BridgeRev

View solution in original post

1 Reply 1
Kevin-C
Solution
Recognized Expert | Partner
Recognized Expert | Partner

How to add down arrow to drop down menu?

SOLVE

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;
}
Kevin Cornett - Sr. Solutions Architect @ BridgeRev