How can I add a Read More button to the blog page? Right now, the default appears to be a “read more” underline link, which doesn’t style very well to the theme. Thanks.
Any suggestions please?
There’s no easy way to add the button class to the php code. I’d use javascript/jquery. In js/avia.js replace:
//responsive menu. needs to be at the top
avia_responsive_menu();
with:
$('a.more-link').addClass('button');
//responsive menu. needs to be at the top
avia_responsive_menu();