I have changed the phrase "Take a Tour" to "Read More" in the following files: front page.php, loop.php and blog.php. Now, I have "Read More', but no button. Any suggestions? http://173.254.28.149/~colle105/wordpress/the-latest/blog/
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .content-bar .post .post_content .read_more { -webkit-box-shadow: 1px 1px 1px #84a535; -moz-box-shadow: 1px 1px 1px #84a535; border: solid #658f02 1px; background: #658f02; } .content-bar .post .post_content .read_more:hover { opacity: 0.6; -webkit-transition: all 0.6s linear; -moz-transition: all 0.6s linear; -o-transition: all 0.6s linear; -webkit-animation: bounceIn_custom 0.3s ease-in-out; -moz-animation: bounceIn_custom 0.3s ease-in-out; -o-animation: bounceIn_custom 0.3s ease-in-out; animation: bounceIn_custom 0.3s ease-in-out; } This will resolve your issue.