How Do I get rid of the image field on blog

Discussion in 'HTML & Website Design' started by traffictipsnow, Sep 16, 2009.

  1. #1
    http://ryanshaw.net/


    There is my blog above. I'm trying to get rid of the image field that is displayed to the left of the post on the homepage cleanly without messing up the template.

    Here is the homepage template code for wordpress:

    <?php get_header(); ?>

    <div id="content">

    <div class="postgroup">
    <?php $flag = 'odd'; ?>
    <?php while (have_posts()) : the_post(); ?>
    <div class="post indexpost" >

    <div class="entry">
    <img class="header" src="<?php bloginfo('template_url'); ?>/functions/timthumb.php?src=<?php echo themefunction_catch_that_image() ?>&amp;w=250&amp;h=250&amp;zc=1" alt=""/>
    <div class="title">

    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

    <div class="postmeta">
    <p>
    <span class="section section-1">In <?php the_category(', ') ?> </span>
    <span class="nodisplay">|</span>
    on <span class="section section-2"><?php the_time('F j, Y'); ?></span>
    </p>
    </div>
    </div>
    <div class="text">
    <?php themefunction_content(200,'');?>
    </div>
    </div>


    </div>

    <?php endwhile; ?>

    <div id="pagenav">
    <?php
    if (function_exists('wp_pagenavi')) :
    wp_pagenavi();
    else :
    ?>
    <div class="simplenavi">
    <?php posts_nav_link(' &nbsp;&nbsp;','&laquo; Previous Entries','Next Entries &raquo;') ?></div>
    </div>
    <?php
    endif;
    ?>
    </div>
    </div>

    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
     
    traffictipsnow, Sep 16, 2009 IP
  2. traffictipsnow

    traffictipsnow Peon

    Messages:
    88
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I figured out how to get rid of it; now I need to know how to move the text over a little to the right to get it off the line.

    Here's the new code:

    <?php get_header(); ?>

    <div id="content">

    <div class="postgroup">
    <?php $flag = 'odd'; ?>
    <?php while (have_posts()) : the_post(); ?>
    <div class="post indexpost" >

    <div class="entry">


    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title=" Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

    <?php themefunction_content(300,'');?>
    <div class="title">



    <div class="postmeta">
    <p>
    <span class="section section-2"><?php the_time('F j, Y'); ?></span>
    </p>

    </div>
    </div>
    <div class="text">


    </div>
    </div>


    </div>

    <?php endwhile; ?>

    <div id="pagenav">
    <?php
    if (function_exists('wp_pagenavi')) :
    wp_pagenavi();
    else :
    ?>
    <div class="simplenavi">
    <?php posts_nav_link(' &nbsp;&nbsp;','&laquo; Previous Entries','Next Entries &raquo;') ?></div>
    </div>
    <?php
    endif;
    ?>
    </div>
    </div>

    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
     
    traffictipsnow, Sep 16, 2009 IP