Change the appearance of the WordPress excerpt more link
<?php
// Changing excerpt more
add_filter('excerpt_more', 'new_excerpt_more');
function new_excerpt_more($more) {
return '...<br /><a class="clear excerptmore button" href="'.get_permalink().'">'. __('Continue reading' , PRiNZ_DOMAIN).' »</a><br /><br />';
}
?>