Search code examples
jquerymenubar

how to remove some link text?


i have some index.php page.. after download jquery drop down menu,the link text like "no back link" always appear..it disturbing my page..how to remove it?? how if it comes from installed file which consist of css file and js file?? what part that must i change?

<img src="bannersketch.png" border="0">
<div id="menu">
    <ul class="menu">
        <li><a href="index.php" class="parent"><span>Home</span></a>
        </li>
        <li><a href="#" class="parent"><span>Inspection Report</span></a>
            <div>
                <ul>
                        <li><a href="inspection_report1.php#Tabs-1" class="parent"><span>Inspection Report</span></a></li>
                        <li><a href="inspection_report1.php#Tabs-2"><span>Input Data</span></a></li>
                </ul>
            </div>
        </li>
        <li><a href="#"><span>Statistics</span></a></li>
        <li class="last"><a href="#"><span>Contacts</span></a></li>
    </ul>
</div>

alt text http://img594.imageshack.us/img594/8752/screenshot3r.png


Solution

  • Finally I've found the answer to this problem. We must put the copyright inside our page, like:

    <div id="copyright">
        Copyright &copy; 2010 <a href="http://apycom.com/">Apycom jQuery Menus</a>
    </div>
    

    and if you don't want to show that link text, you just hide it in CSS.