How do I replace the "Continue reading" button with just a plain "Continue Reading" text link?
There is an old post on this subject, but it does not give a clear answer. I presume I have to use some custom CSS - what should it be?
Fetching latest tweet ...
How do I replace the "Continue reading" button with just a plain "Continue Reading" text link?
There is an old post on this subject, but it does not give a clear answer. I presume I have to use some custom CSS - what should it be?
Add this to Custom CSS
.entry-content .block-button.more-link {
background: none;
box-shadow: none;
border: none;
color: #123456;
text-shadow: none;
}
Get HEX colour code for color (#123456) here - http://www.colorpicker.com/
i have tried this but still get the effec, why?
I solved my problem by using a plugin called Advanced Excerpt
By Bas van Doren http://basvd.com/code/advanced-excerpt/
see example usage on my website
http://www.jetlagandmayhem.com
i have tried this but still get the effec, why?
Eh?
You can alternately add this to child-theme's functions.php to override the existing function which outputs continue reading link with block-button. You can then style it using .custom-continue-reading class.
<?php
function graphene_continue_reading_link() {
global $graphene_in_slider;
if (!is_page() && !$graphene_in_slider) {
$more_link_text = __( 'Continue reading »', 'graphene' );
return '</p><p><a class="custom-continue-reading" href="'.get_permalink().'">'.$more_link_text.'</a>';
}
}
This topic has been closed to new replies.