Post title display issue between browsers
-
Okay, I got a weird display issue that’s has me completely stumped. I have been working on it for hours. In Firefox, everything is displayed correctly. In IE and Chrome, the first two post titles are smaller in font size than the last two posts on the front page. This is in the loop and I can’t understand why the first two are wrong, yet the last two are right.
Will someone please go there and tell me what is wrong? Possible solution, maybe? I will add the relevant code below, the loop and the css code for the post title.
.storytitle { font-size:1.8em; font-weight:bold; margin:0px; color:#444444; }
<?php get_header(); ?> <?php get_sidebar(); ?> <div id="Content"> <div class="navigation"> <div class="older"><?php next_posts_link('« Older Entries') ?></div> <div class="newer"><?php previous_posts_link('Newer Entries »') ?></div> </div><br /><br /> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <div class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></div> <span class="post-info">Posted <?php the_time('F jS, Y') ?></span> <div class="storycontent"> <?php the_content(__('(more...)')); ?> </div> <div class="entry-footer"> Filed under:<?php the_category(', ') ?><br /> <?php if(!is_single()) { ?> <?php comments_popup_link(''.__('0 Comments ','unnamed').'', '1 '.__('Comment ','unnamed').'', '% '.__('Comments','unnamed').'', '', ''.__('Closed','unnamed').''); ?> <?php } ?> <?php if(!is_single()) { ?> <?php } ?> <?php the_tags(__('- Tags: ','unnamed'), ', ', ''); ?> </div> <div class="feedback"> <?php wp_link_pages(); ?> </div> <br /> </div> <?php comments_template(); // Get wp-comments.php template ?> <?php endwhile; else: ?> <p> <?php _e('Sorry, no posts matched your criteria.'); ?> </p> <?php endif; ?> <br /> <div class='navigation'> <span class='older'><?php next_posts_link('« Older Entries') ?></span> <span class='newer'><?php previous_posts_link('Newer Entries »') ?></span> </div> <?php get_footer(); ?> </div>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Post title display issue between browsers’ is closed to new replies.