How to change menu after link color

Hi, please help me! I would like to change the after link color to pink, I had modified the css within child theme but it still doesn't change to pink color yet. Please help. I have used inspect element and find out it is the code below that matter, when I uncheck the box in inspect element, it turns pink but I duno why I can't change it in the child theme - Appearance -> Editor.

Original css:

#Top_bar .menu > li a:after { (index:185) <-----How can I find this files?when I uncheck the background it turns pink!
  1. background#fdd32b;
}

It should changed to pink after modified.


#Top_bar .menu > li a:after { (localhost/style.css?ver=4.2:29) <---- I modified in the appearance->editor (
  1. background#ff85c1;
}

PLEASE HELP!

Comments

  • Hi,

    instead of digging in theme files, please just use below css:
    #Top_bar .menu > li a::after, .menu-highlight #Top_bar #menu > ul > li.current-menu-ancestor > a, .menu-highlight #Top_bar #menu > ul > li.current-menu-item > a, .menu-highlight #Top_bar #menu > ul > li.current_page_ancestor > a, .menu-highlight #Top_bar #menu > ul > li.current_page_item > a, .menu-highlight #Top_bar #menu > ul > li.hover > a { background: #000 !important; }
Sign In or Register to comment.