How to change tag appearance on a pre-made Tumblr theme

tumblrtumblr-tagstumblr-themes

I was wondering if anyone knew how to help me with changing the appearance of my tags. They look like oldschool links (underlined and blue) and it's very garish – it clashes very badly with the rest of my theme. I'm unfamiliar with CSS coding, but all instruction helps! Here's a link to my blog to see what I'm talking about: http://spanz-spectral.tumblr.com/ .

Best Answer

I know how! Look for {block:HasTags} in your theme HTML. Around the <a href="{TagURL}">{Tag}</a> you can add HTML tags that change the layout such as font colour, font size, font style, etc. See below for an example:

{block:HasTags}
       {block:Tags}
          <font size="2"> 
          <font color="#FFFFFF">
          <a href="{TagURL}">{Tag}</a>
          </font>
          </font>
       {/block:Tags}
    {/block:HasTags}

I hope that helps!

Now I'm just trying to figure out how to automatically place a comma after each tag, but not when there is just one tag displayed. ;__;