Hey guys, I have a website run totally through wordpress and I tried to fully customize it through CSS, it all works fine except in Internet Explorer and unfortunately I have a Mac and I know of no one that has a windows computer, so I cant really troubleshoot it that well.
My posts are on top of each other and I think it is because of the divs and floats that I placed on my dates, categories and comment form....
My coding skills aren't that great, so I was wondering if a more experienced coder could look through my code or help me figure out a hack for the Internet Explorer model?
The site is: http://www.payology.com/blog
This is the header code:
get_header(); ?>
<div id="wrapper">
<div id="content" class="narrowcolumn" role="main">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h4><div class="feedback"><?php comments_popup_link(__('0'),__('1'),__('%')); ?></h4>
<div class="date"><?php the_date('','<h5>','</h5>'); ?>
<div class="meta"><?php the_category(',') ?></div></div>
<h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2>
<div class="entry"><?php the_content('<div id="More">Read More</div>'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>