Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey @filipfarek – is your goal to remove the arrows but retain the functionality of the menu so that the sub-menu appears when clicked on? Or to remove the sub-menu and arrow icons altogether and clicking takes you to another page?

    Thread Starter filipfarek

    (@filipfarek)

    Hey @coltonz goal is remove arrows and funkcionality appears, I add folow css, it works, but i dont know if it ok .)

    .menu_main_nav > li.menu-item-has-children > a:after {
    content: '\e828';
    font-family: 'fontello';
    font-weight: normal;
    display: none;
    position: absolute;
    top: 50%;
    right: 1.5em;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }

    Hey @filipfarek, great to hear that it works! One recommendation – don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.

    A custom CSS editor (usually titled Additional CSS) is included in the Customizer as of WordPress 4.7 specifically for this purpose.

    As an alternative, especially if you intend to modify more than just CSS, create a child theme.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove arrow icon menu’ is closed to new replies.