Hello Atahualp friends.
I have this strange thing going on. I have posts, of course, and they look nice. But the same post is also imported on a single page and there it looks really different. I would like it to be the same.
Can anybody shed some light on where this difference comes from and how do I get the to look the same?
The way the single post looks;
http://newspiration.com/news/2009/09/vip-of-the-week/
And now the exact same post but the displayed on the single page;
http://newspiration.com/news/vip/
And this is the code with which I draw that post into the page;
<div class="txtboxvip">
<?php if ( is_page('3') ) { ?>
<?php $my_query = new WP_Query('category_name=vip&showposts=1');
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h2><?php the_title(); ?></a></h2><?php the_content(); ?>
<?php endwhile; ?>
<?php } ?>
<?php /* If there are any posts: */
if (have_posts()) : $bfa_ata['postcount'] == 1; /* Postcount needed for option "1 first posts full posts" */ ?>
</div>
Anybody???