Here’s some CSS from a theme I’m installing. The trigger is adding the “more-link” class to the link.
HTML from View Source
<a href="https://my-site/my-post-url/" class="more-link">Read more</a>
=============================
CSS styling
a.more-link:link, a.more-link:visited {
-moz-border-radius: 3px 3px 3px 3px; /*round corners*/
background: #7f7e7e;
border: 1px solid #555555;
color: #FFFFFF;
float: right;
font-family: some-font;
font-style: italic;
margin: 0;
padding: 5px 10px;
text-decoration: none;
}
===============================
If you need the code to turn the read more ellipse into a text link, this goes in the theme’s functions.php file:
function excerpt_ellipse($text) {
return str_replace(' [...]', '<a class="more-link" href="'.get_permalink().'"><br />Read more</a>', $text); }
add_filter('the_excerpt', 'excerpt_ellipse');