Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • see what i mean?

    well look at your member profile section
    https://gbpcentral.com/members/fozzer/
    compared to mine
    https://thefutureofrnb.com/members/futureofrnb

    but what about everything not being inline? that is the part i dont understand how to do..

    yeah im having problems with step 3 too… could somebody take a look at it please?
    here is the page.php code…how should it look after its edited?

    <?php get_header(); ?>
    
    <div class="pagewrapper">
    
    <div class="midcontainerdiv">
    
    <div class="contentouter">
    
    <?php if(get_admin_options('sfshowpages') == TRUE)
    
    {
    
    ?>
    
    <?php include (TEMPLATEPATH . '/include/featured.php');?>
    
    <?php
    
    }
    
    ?>
    
    <?php if (have_posts()) : ?>
    
    <?php while (have_posts()) : the_post(); ?>
    
    <div class="postcontent">
    
    <?php if(get_admin_options('showadsense') == TRUE)
    
    {
    
    ?>
    
    <div class="adsense">
    
    <?php echo get_admin_options("gadsensecodeone");?>
    
    </div>
    
    <?php
    
    }
    
    ?>
    
    <div class="toprow">
    
    <div class="postheader">
    
    <h1><?php $thisPost = $post -> ID; if (get_post_meta($thisPost, changeH1, true) != ”) {
    
    echo (get_post_meta($thisPost, changeH1, true));
    
    } else {
    
    the_title();
    
    }
    
    ?>
    
    </h1>
    
    <div class="infodiv">
    
    <div class="info1">
    
    Posted in <?php the_time('F jS, Y') ?>
    
    </div>
    
    <div class="info2">
    
    by <?php the_author() ?>
    
    </div>
    
    <div class="info3">
    
    <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
    
    </div>
    
    </div> <!-- end of infodiv -->
    
    </div> <!-- end of postheader -->
    
    </div> <!-- end of toprow -->
    
    <div class="indexpagecontent">
    
    <?php the_content('&raquo;'); ?>
    
    </div> <!-- end of indexpagecontent -->
    
    </div> <!-- end of postcontent -->
    
    <?php if(get_admin_options('chkcommentspages') != '') 
    
    {
    
    ?>
    
    <?php
    
    $mywp_version = get_bloginfo('version');
    
    if ($mywp_version >= '2.7') {
    
    comments_template('', true);
    
    } else {
    
    comments_template();
    
    }
    
    ?>
    
    <?php
    
    }
    
    ?>
    
    		<?php endwhile; ?>
    
    	    <?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    
    	   <?php endif; ?>
    
    <div class="pagenextback">
    
    <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
    
    </div>
    
    </div> <!-- end of contentouter -->
    
    <?php get_sidebar(); ?>
    
    </div> <!-- end of midcontainerdiv -->
    
    <?php get_footer(); ?>

Viewing 4 replies - 1 through 4 (of 4 total)