Content not floating Left, need CSS help
-
Hi,
I’m using a modified Mimbo theme and attempting to build 3 narrow columns to showcase my Featured Categories (called Publications). I want the Publication excerpts to line up horizontally.So far, I can only get them to stack vertically:
http://www.evolvingdoordesign.com/blog/Here is the css:
#featured-cats ul {
list-style:none;
float:left;
display:inline;
padding: 3px 30px 22px 0px;
width: 300px;
}and the php for that secton:
<!–START PUBLICATIONS–><div id=”featured-cats”>
<h3><?php _e(‘Publications’,’nyfera’); ?></h3><?php
$display_categories = get_option(‘openbook_cats’);
foreach ($display_categories as $category) {
$showposts = get_option(‘openbook_featured_posts’);
query_posts(“showposts=$showposts&cat=13”);
?>-
<?php while (have_posts()) : the_post(); ?>
<div class=”clearfloat featured-cats”>
” rel=”bookmark” title=”<?php the_title(); ?>”>
<?php echo get_post_image (get_the_id(), ”, ”, ” .get_bloginfo(‘template_url’) .’/scripts/timthumb.php?zc=1&w=105&h=85&src=’); ?><h4>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?> </h4>
<?php the_excerpt(); ?>
</div><?php endwhile; ?>
<?php } ?>
</div><!–END PUBLICATIONS–>
Is there other css that affecting the Publications that I may be missing? Any suggestions?
Thanks so much!
The topic ‘Content not floating Left, need CSS help’ is closed to new replies.