2 iceblock Dec 15, 2009 13:11

Okay, I got the "Leave a comment >>" link to show up on each post, but how do I modify that text to be bigger or change its style? I can't find it in the style sheet or even where this $Item class is created.
Hi
One way to do it is to add parameters to the feedback_link call to include some html around the link:
$Item->feedback_link( array(
'type' => 'comments',
'link_before' => '<span class="comment_link">',
'link_after' => '</span>',
) );
You can then style the link based on the comment_link class.
L
In your skin, add this code and it will have a link to the comment form: