aptdesignonline
Member
Posted 7 months ago #
Hi,
I am using the "WP Limit Posts Automatically" plugin, and it tacks a little Read More link on the end of the excerpt it creates. I am trying to figure out a way to style just that link in CSS. Any suggestions?
You can see the in-progress site here:
http://67.15.157.12/~patrickw/
Thanks!
http://wordpress.org/extend/plugins/wp-limit-posts-automatically/
aptdesignonline
Member
Posted 7 months ago #
Figured it out.
You can add HTML in the "Read more linktext" field in this plugin setting.
I added this:
<span class=continue>Continue<span>
And then added this in my CSS file:
span.continue {
background-color: #5c7846;
color: #FFF;
padding: 10px;
font-size: .8em;
}
And that did it.