Thank you again for your great support which has been so helpful. Love to give you a tweet following your support.
How do I get rid of one space that follows the blog blurb and the 3 ellipses (…)?
Here is what I have in functions which I think is a slight modification of what you have:
//* Modify the Genesis content limit read more link
add_filter( ‘get_the_content_more_link’, ‘elevate_read_more_link’ );
function elevate_read_more_link() {
return ‘… <br>Read More‘;
}
I know it’s a small thing but I want to style Read More into a button and it looks wrong to have that space between the last word in the blurb and …
Thanks!
Bud