Okay
  Public Ticket #2310724
Navigation
Closed

Comments

  • buaerhaus started the conversation

    The services button on the nav bar is constantly in an active state, even when not in the services section. Not sure if this is mislabeling, of the sections, but was wondering if you could help us figure out this problem.

    Thanks!

    Jake

  •  3,022
    Andrew replied

    Hi Jake,

    Can you investigate if the issue happens with all other plugins deactivated. If it stopped the you can activate one after the other until you narrowed down the culprit.

    Hope this helps.

  • buaerhaus replied

    Hey Andrew, 

    Yes it is still there when the only 2 plugins activated are the Salient Core/PageBuilder. I will leave all other plugins disabled for the time being. 

    Jake

  •  3,022
    Andrew replied

    Hi Jake,

    Could we have access to the backend we try and see if we can identify what is causing the service menu item set as current menu item with the underline.

    A username password with admin privileges would be best.
    Thanks. 

  •   buaerhaus replied privately
  •  3,022
    Andrew replied

    Hi Jake,

    In regards to the underline issue, I've gone ahead and placed a custom css into the Custom CSS box located in your Salient Options panel to remove the underline

    #header-outer[data-lhe="animated_underline"].transparent #top nav>ul>li:nth-child(2)>a:after {
        border-color: #ffffff00!important;
    }
    #header-outer[data-lhe="animated_underline"] #top nav>ul>li:nth-child(2)>a:hover:after{
      border-color: #ffffff!important;   
    }

    Hope this helps.

    Kind regards,

  • buaerhaus replied

    Awesome! Thank you Andrew!

  • buaerhaus replied

    Hello Andrew,

    It does not appear with the transparent header, but it does still appear on the sticky header. 


  •   Andrew replied privately
  • buaerhaus replied

    Hello Andrew is there a way to apply some kind of webkit for edge/IE because it is still showing up in there for some reason. Also would it be possible to give the the 0.75 opacity as the other 2 that do not appear active? or make them all 1. opacity?

    Thanks,


    Jake

  •  3,022
    Andrew replied

    Hi Jake,

    Sorry for delay in response.

    Try the following:

    #header-outer[data-lhe="animated_underline"] #top nav > ul > li:nth-child(2) > a:after, body.material #header-outer #search-outer #search input[type="text"], body[data-header-format="left-header"].material #search-outer #search input[type="text"] {
        border-color: transparent !important;
    }
    #header-outer[data-lhe="animated_underline"] #top nav > ul > li:nth-child(2) > a:hover:after, body.material #header-outer #search-outer #search input[type="text"], body[data-header-format="left-header"].material #search-outer #search input[type="text"] {
        border-color: transparent !important;
    }
    

    Hope this helps.