XF 1.2 Popup Menu without the arrow

Matthew Hawley

Well-known member
Okay so I added this code to the breadcrumb (with <span class="arrowWidget"></span> originally) and it worked fine, but I wanted to remove the arrowWidget because I have a font awesome icon there. So i removed it and refreshed the forum and its still there. I even looked at it in inspect element and its still there. What do i do?

Code:
<div class="Popup" style="float:right;">
                    <a rel="Menu"><i class="icon-collapse icon-large icon-fixed-width"></i></a>
                        <div class="Menu">
                                <ul class="secondaryContent blockLinksList">
                                    <li><a href="http://google.com">Link 2</a></li>
                                    <li><a href="http://google.com">Link 3</a></li>
                                    <li><a href="http://google.com">Link 4</a></li>
                                    <li><a href="http://google.com">Link 5</a></li>
                                    <li><a href="http://google.com">Link 6</a></li>
                                </ul>
                        </div>
                </div></li>
 
Top Bottom