For some reason the WordPress theme I am using is injecting inline CSS without a source. I figure I try and change the CSS using jQuery. When I use the console it works once, and then goes back to the inline after hovering over the pseudo a:hover selector. Also, when I add the code to the theme, it doesn't work at all. Any ideas?
jQuery( document ).ready(function() {
console.log( "ready!" );
jQuery('.et_pb_widget_area .et_pb_widget a').css({"color":"#0099cc"});
});
I'm fairly new to jQuery, but I can't find the answer cause I am still not sure of the syntax.