StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 11-05-2008, 12:17 AM
poke6uy poke6uy is offline
Registered User
 
Join Date: Oct 2008
Posts: 27
Default show posts inline style

how do I show multiple posts (ex: 3) next to one another on the homepage? I have tried the following:

<h2>New Videos</h2>
<?php $recent = new WP_Query("cat=9&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "video thumb", true) ): ?>
[img]<?php echo get_post_meta($post->ID, [/img]" alt="<?php the_title(); ?>" />
<?php else: ?>
[img]<?php bloginfo('template_url'); ?>/images/homeleft.jpg[/img]" />
<?php endif; ?>
<h3><?php the_title(); ?></h3>

<?php endwhile; ?>


<h3>More Recent Videos</h3>
<ul>
<?php $recent = new WP_Query("cat=23&showposts=2&offset=1"); while($recent->have_posts()) : $recent->the_post();?>
[*]<?php the_title(); ?>
<?php endwhile; ?>
[/list]

the css for the UL & LI

.feavideo {
background: #FFFFFF;
float: left;
width: 550px;
margin: 0px 0px 10px 10px;
padding: 9px 9px 9px 9px;
display: inline;
border: 1px solid #C0C0C0;
}

.feavideo ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}

.feavideo ul li {
list-style-type: square;
display: inline;
margin: 0px 0px 0px 20px;
padding: 10px;
}

I want to show 3 posts side by side and have "more posts" link at the bottom.
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
create version of h4 to display: inline mikewilltoo General Discussion 4 05-13-2009 01:32 PM
Inline Adsense stevelavey General Discussion 4 04-20-2009 04:23 PM
Remove image border from inline css Kenn General Discussion 4 02-23-2009 03:50 AM


All times are GMT -5. The time now is 12:28 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.