css - trouble styling p class -
i'm having trouble styling <p class="wp-caption-text">
.
i've tried .detail p.wp-caption-text
, .detail .wp-caption-text
, .wp-caption-text
, , on. nothing seems work. missing?
index.php
<?php get_header(); ?> <!-- #content --> <div id="content"> <!-- start of .post --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post<?php if(!has_post_thumbnail()) echo " no-featured"; ?>"> <?php if(has_post_thumbnail()): ?> <div class="featured"> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(array(700,9999)); ?></a> <div class="credit"></div> </div> <?php endif; ?> <div class="detail"> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php if (the_post_thumbnail_caption()) { echo '<p class="wp-caption-text">' . the_post_thumbnail_caption() . '<p>'; }?> <div class="meta"> <div class="top"></div> <p><?php _e('by'); ?> <strong><?php the_author(); ?></strong></p> <p><?php _e('posted'); ?> <strong><?php echo get_the_date(); ?></strong></p> <p><?php _e('category'); ?> <?php the_category(', '); ?></p> <div class="bottom"></div> </div> <div class="excerpt"> <?php the_excerpt(); ?> </div> <?php $args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $post->id ); $attachments = get_posts($args); if(count($attachments) > 1): ?> <div class="pic-excerpt"> <div class="top"></div> <div class="outer"> <h3><?php _e('pictures in set'); ?></h3> <div class="pic"> <?php the_image_excerpt(wpop_get_option('pic_excerpt')); ?> </div> </div> <div class="bottom"></div> </div> <!-- pic-excerpt --> <?php endif; ?> </div> </div> <?php endwhile;?> <div class="paging"> <div class="alignleft"><?php next_posts_link('« older entries', 0); ?></div> <div class="alignright"><?php previous_posts_link('newer entries »', 0); ?></div> <div class="clear"></div> </div> <?php endif;?> <!-- end of .post -->
you're not closing paragraph tag on line-
<?php if (the_post_thumbnail_caption()) { echo '<p class="wp-caption-text">' . the_post_thumbnail_caption() . '<p>'; }?
here fix
<?php if (the_post_thumbnail_caption()) { echo '<p class="wp-caption-text">' . the_post_thumbnail_caption() . '</p>'; }?
Comments
Post a Comment