Anything wrong with this drop down menu?

I am rebuilding a website that was part of a hacked system and used to be Wordpress. The host area is in kind of a lockdown where I need a password to view the site online, and that may be the issue, but I am having a problem with the drop down menus and with links failing because they were adding an additional # to the end of the links (although they are not in the code) I wanted to know if anyone can see anything wrong in this menu code. FYI I have used both a # and javascript void in the top tab for the dropdown area but neither seem to work when live:

<div class="nav-collapse collapse"> 
                            <ul class="nav pull-right">
                                <li class="dropdown"><a class="dropdown-toggle" href="javascript:void(0);" data-toggle="dropdown" data-pgc-edit="Dropdown Title 1[href]">Diamond Buyer<b class="caret"></b></a>
                                    <ul class="dropdown-menu"> 
                                        <li><a href="jewelry.html" data-pgc-edit="Sub Link 1.1[href]">Sell Your Jewelry</a>
                                        </li>
                                        <li><a href="diamonds.html" data-pgc-edit="Sub Link 1.2[href]">Sell Your Diamonds</a>
                                        </li>
                                    </ul>                                     
                                </li>
                                <li class="dropdown"><a class="dropdown-toggle" href="diamonds.html" data-toggle="dropdown" style="outline: 1px solid #E0D045; outline-offset: 2px;" data-pgc-edit="Dropdown Title 2[href]">Get An Offer</a>
                                </li>
                                <li><a href="contact-us.html" data-pgc-edit="Contact Link[href]">Contact us</a>
                                </li>
                            </ul>
                        </div>

It appears the link to the js files was being blocked by permissions. I fixed that.