Having hard time understanding how to insert code

[php]<?php
/**

  • @ Photo Nexus Index
    */
    get_header();
    ?>
<?php // ***** // Get the user choices for the theme options. // ***** $featured_page=get_option (MTHEME . '_featured_page'); $featured_transition=get_option (MTHEME . '_featured_transition'); $featured_speed=get_option (MTHEME . '_featured_speed'); $featured_slideshow=get_option (MTHEME . '_featured_slideshow'); $featured_slideshow_timeout=get_option (MTHEME . '_featured_slideshow_timeout'); $phonx_image_resize=get_option( MTHEME . '_photo_resize'); $timthumb_path=$theme_path . '/timthumb.php'; // Some Defaults; $featured_linked=false; $attatchmentURL=""; $postLink=""; $thelimit=-1; $count=0; if ( get_option(MTHEME . '_demo_panel') == 1 || get_option(MTHEME . '_demo_panel') == true ) { if ( isset( $_GET['featured'] ) ) $_SESSION['mtheme_featured']=$_GET['featured']; if ( isset($_SESSION['mtheme_featured'] )) $featured_transition = $_SESSION['mtheme_featured']; } ?>
<?php // Don't Populate list if no Featured page is set if ( $featured_page <>"" ) { ?>
			<?php
				// Grab all image attachements from the featured page
				$images =& get_children( array( 
											'post_parent' => $featured_page,
											'post_status' => 'inherit',
											'post_type' => 'attachment',
											'post_mime_type' => 'image',
											'order' => 'ASC',
											'numberposts' => $thelimit,
											'orderby' => 'menu_order' )
											);
											
				// Loop through the images
				foreach ( $images as $id => $image ) {
					$attatchmentID = $image->ID;
					$imagearray = wp_get_attachment_image_src( $attatchmentID , 'full', false);
					$imageURI = $imagearray[0];
					$imageID = get_post($attatchmentID);
					$imageTitle = apply_filters('the_title',$image->post_title);
					$postlink = get_permalink($image->post_parent);
					// If linking is On
					if ($featured_linked == 1 || $featured_linked == true) {
						$attatchmentURL = get_attachment_link($image->ID);
					}
					// Count
					$count++;
					?>
					<?php 
							if ( $phonx_image_resize==1 || $phonx_image_resize==true ) {
								$newimage=wpmu_image_path($imageURI);
								$imageURI = $timthumb_path . '?src=' . $newimage . '&w=730&q=72';
							}
					?>
					<li class="featurecenter" >
					<img src="<?php echo $imageURI; ?>" title="<?php echo $imageTitle ?>" alt="<?php echo $imageTitle ?>" />
					</li>
				<?php
				}
				?>
</ul>
<?php // If Ends here for the Featured Page } ?>
<?php get_footer(); ?>[/php]

I am trying to put a div tag under the slider. If i put in like

hello
I can put it on top of the picture or below the footer. but i cannot see how i can put some text below the picture. I have inserted everywhere and the best i can do is insert text as a picture in the slideshow. I have even tried inserting basic php like get_page{}; but i have been unable to make it work. How would i go about getting between the slider and the footer?
Sponsor our Newsletter | Privacy Policy | Terms of Service