• Resolved westprogram1

    (@westprogram1)


    I am changing the navigation bar so if you are on the page the link will show Hot pink instead of blue. The problem is is that There is a little triangle arrow that still shows up blue and I want to change it to the same color as the link above it. Here is the link to the website: https://www.code-bytes.net/RWU/. Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try this in additional CSS

    /*---------- triangle on current ----------*/
    .navigation-main ul > .current_page_item a:after,
    .navigation-main ul > .current-menu-item a:after,
    .navigation-main ul > .current-post-ancestor a:after,
    .navigation-main ul > .current-menu-parent a:after,
    .navigation-main ul > .current-post-parent a:after {
    	border-color: #fc0dcc #fff #fff;
    }
    
    /*---------- triangle on hover ----------*/
    .navigation-main ul > .current_page_item:hover a:after,
    .navigation-main ul > .current-menu-item:hover a:after,
    .navigation-main ul > .current-post-ancestor:hover a:after,
    .navigation-main ul > .current-menu-ancestor:hover a:after,
    .navigation-main ul > .current-menu-parent:hover a:after,
    .navigation-main ul > .current-post-parent:hover a:after {
    	border-color: #fc03a5 #fff #fff;
    }
    Thread Starter westprogram1

    (@westprogram1)

    Thanks, that helped!

    Hi, I am a newbie.
    I was trying the same (but different colour).
    In what section do I have to enter the code ?
    My site is following; https://www.stopdedieven.nl/

    When I look at theme -> edit I can change the header and page but I cannot find a “menu” css file. Is it incorporated in another part of css ?

    EDIT: Got it ! It is RTL.css

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change colors on navigation bar’ is closed to new replies.