• Hi all,

    I have develop a theme to use in WordPress. I have used sevel jQuery items in the site and also used modernizr-2.6.1.min library and couple of script for the menu. I also have some classes and divs inside the ul and li. I also ul under ul that shows up beside other ul. can check the following code to be more specific.

    <div  class="header">
    					<div id="MDDNav">
    							<ul>
    								<li class="navlink">
    									<div  class="tab"> <a href="index.html">Home</a>
    									</div>
    
    								</li>
    								<li class="navlink">
    									<div  class="tab"> <a href="principal.html">CEO</a></div>
    
    								</li>
    
    							<li class="navlink">
    								<div  class="tab"><a href="services.html">Services</a>
    								</div>
    								<div  class="mdd">
    									<div class="panel">
    										<div class="column">
    											<ul class="group">
    												<!-- <li class="mdd-item"><a href="" class="item-link landing">Management Audit</a></li> -->
    												<li class="mdd-item"><a href="" class="item-link"> Cost & Cost Accounting System Consultancy</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Cost Audit</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Management Audit</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Management Consultancy</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Financial Management Consultancy</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Internal Control System Consultancy</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Internal Audit</a></li>
    												<li class="mdd-item last"><a href="" class="item-link">System Design for ERP Solutions</a></li>
    											</ul>
    										</div>
    										<div class="column">
    											<ul class="group">
    												<!-- <li class="mdd-item"><a href="" class="item-link landing">Tax</a></li> -->
    												<li class="mdd-item"><a href="" class="item-link"> Financial Consultancy</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Arranging Foreign and Local Loans</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Preparation of Project Profile & Feasibility</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Company matters.</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> IPO related Consultancy</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Financial Analysis</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Share management/Portfolio Management</a></li>
    												<li class="mdd-item last"><a href="" class="item-link">HR and Admin related Consultancy</a></li>
    												<!-- <li class="mdd-item last"><a href="" class="item-link landing all">All Tax services »</a></li> -->
    											</ul>
    											<!-- <ul class="group second">
    												<li class="mdd-item last"><a href="" class="item-link landing">Tax rates online</a></li>
    											</ul> -->
    										</div>
    										<div class="column">
    											<ul class="group">
    												<li class="mdd-item"><a href="" class="item-link">Strategic Planning</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Development of Management Reporting and MIS.</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Work Study Management System</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Production Management & Monitoring System.</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Development of Proper Budgetary Control System</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Development of Integrated Supply Chain Management System.</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Consultancy in new business set up, particularly in Real Estate, Amusement parks, Hotels,Motels, Restaurant, Garments, Textile, Dredging, Ship Building, Inland Terminal Port, etc.</a></li>
    												<li class="mdd-item"><a href="" class="item-link">Business Development</a></li>
    												<li class="mdd-item"><a href="" class="item-link"> Credit Analysis</a></li>
    												<li class="mdd-item last"><a href="" class="item-link">Income Tax, Custom Duty and VAT Consultancy</a></li>
    
    											</ul>
    										</div>
    										<div class="clr"></div>
    									</div>
    								</div>
    							</li>
    							<li class="navlink">
    								<div  class="tab"><a href="">Research</a>
    								</div>
    							</li>
    							<li class="navlink last">
    								<div  class="tab"><a href="contact.html">Contacts</a>
    								</div>
    							</li>
    
    						</ul>
    					</div>
    				</div><!-- end: "#header" -->

    All what I am looking for is create my own menu in wp. may creating widget or plugh but the one i have here. I dont want dump all my code and start developing my menu using any other plugin. So that I can learn how all it works and never have look back for any menu.

    thank you very much in advance for your replies.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @srmahmud2,

    The following articles will help you to achieve this.
    http://codex.ww.wp.xz.cn/WordPress_Menu_User_Guide
    http://codex.ww.wp.xz.cn/Navigation_Menus

    Best Regards,

    Umm. Looks good.

    Thread Starter srmahmud2

    (@srmahmud2)

    Hi
    Thank your very much for your reply @WPMY DEV. I have tried both the links. I am much more interested about the 2nd link Navigation Menus.

    For you kind information I already know how add nomar navigation bar or menu which is only have few lis’ in side an ul having no class or ids’ or any div. Infact I can add drop down menus that consists 1st generation ul and 2nd generation ul inside any 1st generation lis’ and 3rd generation ul inside any 2nd generation li and must not have any class or ID or any div in anywhere inside the menu.

    However the problem starts here as I would like add div after an ul and before any li. each generation ul got their perspective class and i.e 1st gen ul got a div as well as a class. 1st gen li got class which is different then the 2nd gen li. both li got their own div.

    Wish I could make you understand what pressure I am taking and how much trouble I am in.

    Thnk you again and waiting for your reply.
    mahmud

    Hi mahmud,

    The answers for your question is in the pages provided in previous reply. you can create custom Walker class to achieve this, for more information on it visit this page http://codex.ww.wp.xz.cn/Function_Reference/wp_nav_menu

    Cheers.

    Thread Starter srmahmud2

    (@srmahmud2)

    Thank you very much Mr. WPMUDEV,
    Fianllay it seems like I found something to work out. this is something what i was looking for. there’s light of hope. Never mind may it’s hard but at least I can imagine that once I would finish trying all this page. It seems the ultimate solution to what I would like to create.

    Thank you again.
    mahmud

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘creating multi column single or more level menu’ is closed to new replies.