Topic: stupid question about the design of short-story and comments links

hello guys, need your help with the above subject.
i got all the thing workin' pretty fine, but i have no idea how to change the style of the short-story link. i mean usually i use css for those things, but in the templates i can't use them. there is something like this:
[link][/link] so i can't just 'class' it.
the same thing with the comments link.

2 (edited by 2012-09-26 16:50:45)

Re: stupid question about the design of short-story and comments links

One way to work around this problem is to wrap the link tags in a span tag (or similar) in the templates:

<span class="mylink">[link]Link[/link]</span>

Then in your CSS:

span.mylink a {
 color: #9977da;
}