Title: first post different
Last modified: August 19, 2016

---

# first post different

 *  Resolved [blueyez](https://wordpress.org/support/users/blueyez/)
 * (@blueyez)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/first-post-different/)
 * hi there
    i have customized [css gallery theme](http://www.osdesigner.net/wordpress-themes/css-gallery-theme/)(
   css/psd)
 * now i want to make the first post to be big !
    eg: 400×200 insteat of 200×100
   so my latest post will have twice normal size. ( fist post listed on the index.
   php )
 * i have normal post version:
 *     ```
       <?php if (have_posts()) : ?>
       <?php while (have_posts()) : the_post(); ?>
       <a href="<?php $values = get_post_custom_values("url"); echo $values[0]; ?>" title="<?php the_title(); ?>" target="_blank">
       <img src="<?php $values = get_post_custom_values("thumbs"); echo $values[0]; ?>" alt="<?php the_title(); ?>" /></a>
       <?php endwhile; ?>
       <?php endif; ?>
       ```
   
 * on top of this code i want to put the customized post.
    made the css and all 
   this stuff, all i need is the correct code.

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

 *  Thread Starter [blueyez](https://wordpress.org/support/users/blueyez/)
 * (@blueyez)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/first-post-different/#post-705946)
 * and i answer 🙂
    merged fron [here](http://www.opendesigns.org/forum/discussion/1743/)
 *     ```
       <?php if (have_posts()) : ?>
       <?php query_posts("showposts=1"); ?>
       <?php while (have_posts()) : the_post(); ?>
   
       <!--Title Tags-->
       <div class="post"><div class="image_left"></div>
       <h1 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h1>
       <!--End Title Tags-->
   
       <!--Content Tags-->
       <?php the_content('Read the rest of this entry &raquo;'); ?>
       <!-- End Content Tags-->
   
       <?php endwhile; ?>
   
       <?php query_posts("showposts&offset=1");?>
       <?php while (have_posts()) : the_post(); ?>
   
       <!--Title Tags-->
       <div class="post">
       <h1 id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h1>
       <!--End Title Tags-->
   
       <!--Content Tags-->
       <?php the_content('Read the rest of this entry &raquo;'); ?>
       <!-- End Content Tags-->
   
       <?php endwhile; ?>
   
       <?php else: ?>
       Oh no, there aren't any posts!
       <?php endif; ?>
       ```
   
 *  [dijon](https://wordpress.org/support/users/dijon/)
 * (@dijon)
 * [18 years, 2 months ago](https://wordpress.org/support/topic/first-post-different/#post-706144)
 * I found this post through a search and it has the answer I was looking for… Thanks
   blueyez!

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

The topic ‘first post different’ is closed to new replies.

## Tags

 * [custom](https://wordpress.org/support/topic-tag/custom/)
 * [post](https://wordpress.org/support/topic-tag/post/)

 * 2 replies
 * 2 participants
 * Last reply from: [dijon](https://wordpress.org/support/users/dijon/)
 * Last activity: [18 years, 2 months ago](https://wordpress.org/support/topic/first-post-different/#post-706144)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
