Sure!
In your child-theme.CSS there should be something like this:
#title a {
color: #ffffff;
}
#title a:hover {
color: #777777;
}
#title a:link {
color: #CC0000;
}
where #title a {color: #ffffff;}
is the color of your linking title text at the start, #title a:hover{color: #777777;}
is the color of your linking title text when you hover, and #title a:link{color: #CC0000;}
is the color of your linking title text once you have clicked on the title.
To remove the changing color of the linking title text when hovering, remove the “title a:hover {} code from the child-theme.css file.
Does this work for you?