Recent Topics

1 Jan 23, 2008 15:05    

My b2evolution Version: 2.3

Hello,

With B2evolution 2.3, I am triying to put the 'Read More' link just before the last word each post (at the same 'horizontal line' on the screen, without paragraph break)

How can I do it? What to change in the php code?

Many thanks.

3 Jan 25, 2008 10:57

You could try changing the p tag to a span but I think there will still be issues...

Play around with the file in your skins folder called _item.content.inc.php

especially this bit at the top

// Default params:
$params = array_merge( array(
		'image_size'	     => 'fit-400x320',
		'before_url_link'  => '<p class="post_link">'.T_('Link:').' ',
		'after_url_link'   => '</p>',
		'before_more_link' => '<p class="bMore"> ',
		'after_more_link'  => ' ',
		'more_link_text'   => '#',
	), $params );

You could try changing <p class="bMore"> to a span class...

4 Jan 25, 2008 12:20

This does work BUT you must have Auto P switched off!!!

'before_more_link' => '<span class="bMore">',
		'after_more_link'  => '</span>',

This will allow you to have a text preamble to the "read more" link, as long as it's not wrapped in a p tag


Form is loading...