Coloc link sidebar + hover

Hello everybody,

I need your help because I wanna change the color of the links in the sidebar.
I have a menu in the sidebar and I would like to change the color of the links and to change the color when the mouse comes “hover” the link.

I look in the appearence options but I can’t find when I can change THOSE links.

The colors of the others seem changeable but not this one.

Can you help please ?

TY

NB : http://www.diaryfrenchpua.com/english/index.php
so you can see the problem

Hi @fabricex,

I hope you are well today and thank you for your question.

You can change the link color of menu widgets by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

#secondary .widget_nav_menu a {
  color: #000;
}
#secondary .widget_nav_menu a:hover {
  color: #dd3333;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin