Editing "Read More" link
Some people use tags when they their blog is long and do not want to cover the entire page. The usually default more tag just says “read more”. Well, you can customize it to say whatever you want it to say.
Go into your index.php and find your read more coding. Once you have located it, change it to this one:
<?php the_content(__('<span class="morelink">WHATEVER YOU WANT HERE!</span>'));?>
Where it says “whatever you want here” , change it to whatever you want your more link to say.
Now go into your style.css and add the following code in there:
.morelink {
background: #add a color;
color: #add a color;
padding: 5px;
font-weight: bold;
}
.morelink:hover {
background: #add a color;
color: #add a color;
padding: 5px;
font-weight: bold;
}
Edit that to however you like it and you are done