Is it possible to remove all the spans or event the element styling from them?
They are created by VBulletin so I cant manually do it
<div class="thanklist">
<a href="member.php?u=1394" rel="nofollow"><span style="color: #F3484E; font-weight:bold;">mynameisdonald</span></a>
<a href="member.php?u=1394" rel="nofollow"><span style="color: #F3484E; font-weight:bold;">mynameisdonald</span></a>
</div>
Yes, you can use
removeAttr()method, try the following:DEMO
Or if you want to remove them the spans you can use
remove()method:DEMO