Title: Gian Faye Paguirigan's Replies | WordPress.org

---

# Gian Faye Paguirigan

  [  ](https://wordpress.org/support/users/gianfaye/)

 *   [Profile](https://wordpress.org/support/users/gianfaye/)
 *   [Topics Started](https://wordpress.org/support/users/gianfaye/topics/)
 *   [Replies Created](https://wordpress.org/support/users/gianfaye/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/gianfaye/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/gianfaye/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/gianfaye/engagements/)
 *   [Favorites](https://wordpress.org/support/users/gianfaye/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Menu - Create Mobile-Friendly Menu] Dropdown Arrow Overlaps](https://wordpress.org/support/topic/dropdown-arrow-overlaps/)
 *  Thread Starter [Gian Faye Paguirigan](https://wordpress.org/support/users/gianfaye/)
 * (@gianfaye)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/dropdown-arrow-overlaps/#post-5797931)
 * Hi Peter,
 * Here’s the JS solution using jQuery:
 *     ```
       /* Fix overlap arrows bug on Responsive Menu plugin */
       /* span with class 'rm-append-active' is rendered twice when the current page is a link item from a dropdown parent on a menu */
       	var $arrowDouble = $('.rm-append-active').length;
       /* if span.rm-append-active is rendered twice, hide the first one */
       	if ($arrowDouble == 2){
       		$('span.rm-append-active:first-of-type').hide();
       }
       ```
   
 * There’s also a CSS workaround which can be found here:
    [http://stackoverflow.com/questions/6447045/css3-selector-first-of-type-with-class-name](http://stackoverflow.com/questions/6447045/css3-selector-first-of-type-with-class-name)
 * In that case:
 *     ```
       span.rm-append-active ~ span.rm-append-active {
       	display: none;
       }
       ```
   

Viewing 1 replies (of 1 total)