Recent Topics

1 Feb 03, 2011 19:25    

My b2evolution Version: 3.3.1

Hi everyone,
I'm trying to change the size of blog page list to make it bigger at lower of page on Pixelgreen or other skins that write prev or next and I'm not getting to it. I think it's reliated to this code part of index.php:
<?php
// -------------------- PREV/NEXT PAGE LINKS (POST LIST MODE) --------------------
mainlist_page_links( array(
'block_start' => '<p class="center"><strong>',
'block_end' => '</strong></p>',
'prev_text' => '&lt;&lt;',
'next_text' => '&gt;&gt;',
) );
// ------------------------- END OF PREV/NEXT PAGE LINKS -------------------------
?>
Could someone helping me ? Tryed with <big> some places but it's not working. Also went on body. footer but nothing in font sizes that I tried worked...
Thank's for your help!

finally changed for this and it<s just what I wanted:

<?php
// -------------------- PREV/NEXT PAGE LINKS (POST LIST MODE) --------------------
mainlist_page_links( array(
'block_start' => '<FONT SIZE=5><p class="center">',
'block_end' => '</p></FONT>',
'prev_text' => '&lt;&lt;',
'next_text' => '&gt;&gt;',
) );
// ------------------------- END OF PREV/NEXT PAGE LINKS -------------------------
?>
May be it couls help someone...
Thank's for trying to help!

2 Feb 03, 2011 19:37

Attack it with CSS. Add another class to that <p class="center"> code (something like <p class="center bigstuff">) in the 'block_start' and then style that class in the skin's style.css file.

.bigstuff {
font-weight: bold;
font-size: 120%;
}

3 Feb 03, 2011 21:31

Thank's, I will try it!


Form is loading...