bingeboy
Forum Replies Created
-
Forum: Plugins
In reply to: Image Plugin to have 2 different size images for same contentDude just got it with CSS.
created a class for the post on the index.php page and the left the default image size for the actual post page.
.imageclassname{ width:100% height:auto; }
Now the image just goes as wide as my post div on the page.
I’m looking for the same functionality. Or a way to control an image from one page to the next.
I have a 3 col layout that needs smaller images but once an article link is clicked I would like to display a larger image.
Forum: Themes and Templates
In reply to: 3 Col layout with blueprint cssI’m still having trouble to make the loops work properly. The link was very educational I am just lacking the php skills to get everything the way I want it.
` <?php $my_query = new WP_Query(‘category_name=featured&showposts=1’);
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?><div class=”span-8 first” id=”post-<?php the_ID(); ?>”>
<h2 class=”postTitle”>” rel=”bookmark”><?php the_title(); ?></h2>
<small><?php the_date(); ?> by <?php the_author(); ?></small><div class=”post span-7″><?php the_content(__(‘(more…)’)); ?></div>
</div>
<?php endwhile; ?>
So with the above I’m able to pull the first code from the featured cat, but I really don’t want to have to pull from different cats. I really need 1st post, 4th post, 7th post etc in the first col. Then the 2nd post, 5th post, 8th post, etc in the second col. Third col should have the 3rd post, 6th post, 9th post
etc. So then the <<next and prev>> links to work properly.How would I link with this type of increment in the 3 separate loops?
Thanks
Forum: Themes and Templates
In reply to: 3 Col layout with blueprint cssThanks for the link… I’m not sure I have the skills to fully sort it out but I’ll see if I can get something to work with and re-post.