Topic: Need Help with CSS

Help...I'm really new at this!  Can someone pleasssse tell me how to change the color of the "post reply" link.
in my css.

Thanks

Re: Need Help with CSS

The markup around it is this:

<div class="inbox">
        <p class="postlink conr"><a href="post.php?tid=6394">Post reply</a></p>

So you can style the link with this:

.inbox .postlink a { color: #543; }

Re: Need Help with CSS

Thank you for the help!