Help locating an inline style

Hi guys

I still don;t have my around PHP I am afarid, and how it generates the HTML. Will do a tute soon.

In the meantime, I am using a woo theme, the station.

I have a child theme set up and I added the following code

<style type="text/css">.broken_link, a.broken_link {
text-decoration: none;
}</style>

But it is being overwritten by an inline style here:

<style type="text/css">.broken_link, a.broken_link {
text-decoration: line-through;
}</style>

I am still not up to speed with PHP, and I know the .php files generate the HTML.

Can you please help me locate the file to remove the inline style? I can’t find it. I looked in header.php but I don;t know where to remove the inline style. The inline style is within the <style> tage in the html doc.

Short of finding the location of that code (the best option) you just need to make your override CSS rule more specific. E.g.

<style type="text/css"> [COLOR="Red"].container[/COLOR] .broken_link, [COLOR="Red"].container[/COLOR] a.broken_link {
text-decoration: none;
}</style>

.container is just a random name here. Change it to whatever element contains those links.

Maybe using !important would work?