Cannot change hover color for links [closed]

You can avoid all this redundancy if you analyze carefully and see where the error is originating. Chrome developer tools or Firefox is great to help you debugging. You are actually trying to style the link, but the link has a span inside of it, each with its own class.

A quick and dirty solution is that on line 101 of your child theme you can add

span.meta-nav:hover, .reply-count:hover, .rpwwt-post-title:hover{
    color: #0f3647;    
}