1 demented Jun 27, 2004 16:47
3 demented Jun 27, 2004 17:09
Oh ok. thank you,I think I understand it. Lol.
4 graham Jun 27, 2004 19:47
The pieces of code that display with each post go between the loop, which is:
<?php // ------------------------------------ START OF POSTS ----------------------------------------
if( isset($MainList) ) $MainList->display_if_empty(); // Display message if no post
if( isset($MainList) ) while( $Item = $MainList->get_item() )
{
$MainList->date_if_changed();
?>
and:
<?php } // ---------------------------------- END OF POSTS ------------------------------------ ?>
But you don't want to put any <div id="whatever"> in the loop, since id's should be used to reference a unique item on the page, a menu for example, so using this will make your code invalid. You should use <div class="whatever"> instead.
Find this piece of code in your _main.php in the folder of whatever skin is bing used. Then change and add divs however u like.
the content of each post is called here:
anything above i guess u would call the header and anything below would be the footer and <div>'ed accordingly.