My b2evolution Version: 2.x
I want to write a skin with the "grid" style (see pic)
http://www.thechristianalert.org/b2evoGrid.jpg
is there a way to loop through the b2evo posts and display them on a row instead of on a list.
Post 1 | Post 2 | Post 3 [these would have excerpts with "read more"] to the full article
.
instead of the traditional list of
Post 1
Post 2
Post 3
I've seen these lines of code
<?php
// ---------------------- POST CONTENT INCLUDED HERE ----------------------
skin_include( '_item_content.inc.php', array(
'image_size' => 'fit-400x320',
) );
// Note: You can customize the default item feedback by copying the generic
// /skins/_item_feedback.inc.php file into the current skin folder.
// -------------------------- END OF POST CONTENT -------------------------
?>
But is there a way to customize this to output in a row?
does this make sense?
Don't include the whole _item_content.inc.php, but open it and copy its parts in the above code. You may want to try this.
Good luck