Hi,
I love the theme but I notice that if the first paragraph of a post is too long, the space under the "More" button disappears. If the post has a really long first page, the entire more button disappears. Can this be fixed somehow?
Thanks,
Tony
Hi,
I love the theme but I notice that if the first paragraph of a post is too long, the space under the "More" button disappears. If the post has a really long first page, the entire more button disappears. Can this be fixed somehow?
Thanks,
Tony
Hello? Paying member here... :^)
I have a similar question...
Is there a CSS we can add to slider.php to make a long text fit inside the "Featured" text area ?
Is there a way to exclude the "More" button ?
Cheers.
Hey,
Sorry for the delay in replying back.
What's your website URL?
You can manipulate the number of characters globally inside the slider description
Inside slider.php edit the 200 into lower number:
You can remove the more button from the slider inside slider.php remove this code:Code:'<p>' . substr(get_the_excerpt(),0,200) . '</p>';
Code:echo ' <a class="more" rel="nofollow" href="' . get_permalink() . '">' . __( 'Read More', 'mframe' ) . '</a>';
I'm the Admin here to help you out, Every time you post something make sure to include your website URL!
Thanks... I just don't want the "More" button pushed off the screen. My website is http://www.notfatnow.com.
If I set
substr(get_the_excerpt(),0,200)
to say:
substr(get_the_excerpt(),0,100)
There may still be a problem with the length of the headline... is there a way to limit the length of the headline as well?
Thanks,
Tony
Yes, in the same file slider.php do the same to:
Code:' . substr(get_the_title(),0,40) . '
I'm the Admin here to help you out, Every time you post something make sure to include your website URL!