no i didnt..this is exactly what my whole index.php file looks like now.
<?php get_header(); ?>
<?php if(!is_paged()) { ?>
<div id="top" class="clearfloat">
<div id="headline">
<img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/headline.png"
width="75px" height="21px" class="clearfloat" alt="" />
<?php query_posts("showposts=1&category_name=Headline"); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div>
<div class="meta">[<?php the_time('j M Y') ?> | <?php comments_popup_link('No Comment', 'One Comment', '%
Comments');?> | <?php if(function_exists('the_views')) { the_views(); } ?>]</div>
<?php $values = get_post_custom_values("Headline");?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<img src="<?php echo get_option('home'); ?>/<?php
$values = get_post_custom_values("Image"); echo $values[0]; ?>"
alt="<?php the_title(); ?>" class="left" width="300px" height="300px" /></a>
<?php the_excerpt(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Read the
full story »</a>
<?php endwhile; ?>
</div>
<div id="featured">
<img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/featured.png" width="72px"
height="17px" alt="" />
<?php query_posts("showposts=4&category_name=Featured"); $i = 1; ?>
<?php while (have_posts()) : the_post(); ?>
<div class="clearfloat">
<?php $values = get_post_custom_values("Image");
if (isset($values[0])) { ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<img src="<?php echo get_option('home'); ?>/<?php
$values = get_post_custom_values("Image"); echo $values[0]; ?>&w=100&h=65&zc=1&q=100"
alt="<?php the_title(); ?>" class="left" width="100px" height="65px" /></a>
<?php } ?>
<div class="info"><a href="<?php the_permalink() ?>" rel="bookmark" class="title"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
</div>
</div>
<?php if ($i<4) { ?><div class="divider"><img src="<?php echo get_option('home'); ?>/wp-
content/themes/arthemia/images/divider.png" width="128px" height="5px" alt="" /></div>
<?php } ; ?>
<?php $i++; endwhile; ?>
</div>
</div>
<div id="middle" class="clearfloat">
<img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/category.png"
class="clearfloat" alt="" />
<?php $display_categories = array(5,6,7,1,71); $i = 1;
foreach ($display_categories as $category) { ?>
<div id="cat-<?php echo $i; ?>" class="category">
<?php query_posts("showposts=1&cat=$category")?>
<span class="cat_title"><a href="<?php echo get_category_link($category);?>"><?php
single_cat_title(); ?></a></span>
<a href="<?php echo get_category_link($category);?>"><?php echo category_description($category); ?
</a>
</div>
<?php $i++; ?>
<?php } ?>
</div>
<?php } ?>
<div id="bottom" class="clearfloat">
<div id="front-list">
<?php
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=-95,-96&paged=$page&posts_per_page=2"); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="clearfloat">
<h3 class=cat_title><?php the_category(', '); ?> »</h3>
<span class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></span>
<br/><span class="meta">[<?php the_time('j M Y') ?> | <?php comments_popup_link('No Comment', 'One
Comment', '% Comments');?> | <?php if(function_exists('the_views')) { the_views(); } ?>]</span>
<?php the_content('Read the full story »'); ?>
</div>
<div class="divider"><img src="<?php echo get_option('home'); ?>/wp-
content/themes/arthemia/images/divider.png" /></div>
<?php endwhile; ?>
<div class="navigation">
<div class="left"><?php next_posts_link('« Older Entries') ?></div>
<div class="right"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
[ Mod Edit - bpat1434 ] Please use [noparse]
[/noparse] tags when posting PHP code.