Okay
  Public Ticket #2570117
Navigation Font
Closed

Comments

  •  8
    byggis started the conversation

    How can i change the 

    Navigation Font and Navigation Dropdown Font color on specific pages?

    I need them to be white on some pages and black on some pages.



    Thank you.

  •  2,965
    Andrew replied

    Hi byggis,

    Use the following custom css in Salient > General settings > CSS/Script related. It will change navigation fonts on homepage.

    .page-id-639 #header-outer[data-lhe="default"] #top nav > ul > li > a {
        color: white !important;
    }
    

    You will need to use page ids.

    Thanks.

  •  8
    byggis replied

    Dear Andrew Thank you for promt reply works like a charm! 
    But how do i get the "arrows" of the menu to be white to?

  •  2,965
    Andrew replied

    Hi byggis,

    Try the following css:

    .page-id-639 #header-outer #top .sf-sub-indicator i {
        color: white !important;
    }
    

    Thanks.

  •  8
    byggis replied

    Works perfect!

    Thank you Andrew!