Q: I lost my project file and I need to make small changes with my menu. I want to add a few items. Can I do it or I must create new menu?
A: With CSS3Menu you can make many changes (rename items, add/remove new items, add/remove
submenus, etc.) directly in generated ul/li structure.
For example, your menu consists of 3 main menu items (Item 1, Item 2, Item 3) and you want
to add one more item.
So, your original code:
<ul id="css3menu1" class="topmenu">
<li class="topfirst"><a href="#" title="Item 1" style="height:18px;line-height:18px;">Item 0</a></li>
<li><a href="#" title="Item 2" style="height:18px;line-height:18px;"><span>Item 1</span></a></li>
<li class="toplast"><a href="#" title="Item 3" style="height:18px;line-height:18px;">Item 2</a></li>
</ul>
Let's add one more item:
<ul id="css3menu1" class="topmenu">
<li class="topfirst"><a href="#" title="Item 1" style="height:18px;line-height:18px;">Item 0</a></li>
<li><a href="#" title="Item 2" style="height:18px;line-height:18px;"><span>Item 1</span></a></li>
<li><a href="#" title="Item 3" style="height:18px;line-height:18px;"><span>Item 1</span></a></li>
<li class="toplast"><a href="#" title="Item 4" style="height:18px;line-height:18px;">Item 2</a></li>
</ul>
For troubleshooting, feature requests, and general help,
contact Customer Support at . Make sure to
include details on your browser, operating system,
CSS3 Menu version, link to your page.
In most cases you'll get a reply within 1 business day. Please read the FAQs first to see if your question has already been answered.