mira:
puede ser una solución, en vez de poner en el css .tabcontent a por que no le creas mejor una clase a cada vinculo, es decir:
Código:
.vinculo1 a{ color:#FF0000; text-decoration:none;}
.vinculo2 a{ color:#00FF00; text-decoration:none;}
y en tu codigo html pones cada vinculo entre span:
Código PHP:
<div id="tab1" class="tabcontent">
<ul>
<?php query_posts('showposts=5&orderby=date'); ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<span class="vinculo1>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?>
</a>
</span
•
<span class="vinculo2">
<?php comments_popup_link('Sin Comentarios', '1 Comentario', '% Comentarios'); ?></li>
<?php endwhile; ?>
</span
</ul>
</div>
espero te sirva..