Okay
  Public Ticket #315576
Remove #tag based url from menu on a new page
Closed

Comments

  • Vasudevan started the conversation

    I've a single page app. I've added a new page "/start-project", the menu on top has wrong url (it adds domain/page/#tag).

    How do I sort this out?

    Vasudevan

  •  8,408
    Tahir replied

    Hey!

    For the single page you need this. It wont work without it. 

    Thanks 


    ThemeNectar Support Team 

  • Vasudevan replied

    Thanks Tahir. Understand.

    Is there a way to hide the menu (except the logo) on other page? (I've a page http://indesigns.co/start-project)

  •  8,408
    Tahir replied

    Sure, Add this into the Custom CSS box located in your Salient Options panel :

    .page-id-3364 #header-outer[data-format="centered-menu"] header#top .span_9 .sf-menu {
        visibility: hidden !important;
    }
    
    Thanks


    ThemeNectar Support Team 

  • Vasudevan replied

    Thanks a lot. Worked like a charm.

    I also need to reduce the width of the header where the top nav is. Also align the menu to the logo vertically.

    Please refer to the attached screenshot.

    Thanks in advance!

  •  8,408
    Tahir replied

    Hey Again!

    Add this into the Custom CSS box located in your Salient Options panel :
    html body #header-outer[data-format="centered-menu"] header#top .span_9, #header-outer[data-format="centered-menu"] header#top .span_9 .sf-menu {
        top: -10px;
    }
    
    html body #header-outer header#top nav > ul.buttons {
        top: 10px;
    }
    
    html body header#top #logo img {
        margin-top: 13px !important;
    }
    
    Thanks 


    ThemeNectar Support Team 

  • Vasudevan replied

    Superb. You are awesome Tahir. Thanks a lot!