Is it possible to use Jquery to get these classes and change the font size? Note that the tags keep changing numbers. I can also not edit the input.
<a class="tag-link-7" title="1 topic" style="font-size: 8pt;">Akira Kurosawa</a>
<a class="tag-link-8" title="1 topic" style="font-size: 8pt;">Ben Jones</a>
Something like
$('a[class^="tag-link"]').css('fontSize', '1.1em')should do the trick.a[class^="tag-link"]selects all links with their class starting with “tag-link”.