Change menu to three items.

  • Posted in : cvCard
  • upwpthemes
    Participant

    Can you provide instructions to go from 5 to 3 menu items and still maintain the navigation functionality?

    Thanks in advance.

    ahmetsali
    Keymaster

    Hi, there are two steps when you want to remove a page from index.html. Let’s assume you want to delete blog page;

    1-) Find your page link in the header nav, and delete it;

    <!-- NAV MENU -->
    <ul class="vs-nav">
    	
    	<!-- InstanceBeginEditable name="Menu-Content" -->
    	
    	<li><a href="#/about">about me</a></li>
    	<li><a href="#/portfolio">portfolio</a></li>
    	<li><a href="#/contact">contact</a></li>
    	<li><a href="#/blog">blog</a></li> ***DELETE THIS LINE
    	<li><a href="#/resume">resume</a></li>
    	
    	<!-- InstanceEndEditable -->
    	
    </ul>
    <!-- NAV MENU -->
    

    2-) Find that page content markup and delet it;

    <!-- PAGE : BLOG -->
    <section id="blog" class="page">
        BLOG PAGE CONTENT
    </section>
    <!-- PAGE : BLOG -->
    
    chugunchik
    Participant

    Thanks! Cool that I found an answer without making a new topic :)

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in and have valid license to reply to this topic.

License required for the following item
Login and Registration Log in · Register