I am facing a challenge with a piece of JavaScript code that loads advertising content:
<script type="text/javascript" language="javascript" charset="utf-8" src="http://adspaces/103872.js"></script>
When rendered in my browser, the code looks like this:
<div id="content0" class="content" title="www.site.com" valign="middle">
<div style="font-size: 12.08px; line-height: 14.08px;" class="title" id="title0">
<a class="link" id="" href="the link" target="_blank">The anchor</a>
</div>
<a class="link" id="" href="the link" target="_blank"><img class="img" id="im_0" src="img src" onerror="swi(this);" onload="if(this.height >43){this.height=43;} formatAd(0);" align="left" border="0" height="43"></a>
<div class="text" id="text0">
<a class="link" id="" href="the link" target="_blank">The anchor</a>
</div>
</div>
I am wondering if there is a way to override the CSS rules set by the JavaScript and insert my own text, adjust the line height, etc. Is it possible to do so?
Your help would be greatly appreciated!