Removing the right chevron

hi

How do I remove or hide the right arrow from the left panel or the main view navigation?

For example, removing or hide the Accordion right arrow.

Thanks a lot

no-chevron class

1 Like

http://framework7.io/docs/list-view.html#link-item

Sorry for resurrecting a zombie thread but…

no-chevron where? The way I read the documentation is that it goes with the item-inner and why do I need to add item-link?

<li>
  <a href="#" onclick="doSomething(0);" class="panel-close">
    <div class="item-media"><span class="fas fa-icon"></span></div>
    <div class="item-inner no-chevron">
      <div class="item-title">On My Way</div>
    </div>
  </a>
</li>

The correct answer is:

  1. you don’t need the item-link class
  2. add no-chevron after the .panel-close class
1 Like