Remove Arrow From Menu :after Icon - Question | JoomShaper

Remove Arrow From Menu :after Icon

LT

Lee Tempest

Helix Framework 1 month ago

Is it possible to remove the down arrow from the parent menu items when they have child items?

I can see in the template.css there are classes for :after that shows the Font Awesome icon.

How can I remove these?

0
1 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 month ago #152494

Hi Lee,

possible, you have to use Custom CSS for that task (and please do not edit template.css file!)

.sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child > a::after {
  display: none;  visibility: hidden; }
0