Hi all,
For my templates, my EE code lives in a table. Everything works fine in Firefox, Safari, and Omni, but when I load the page in IE, the tables go completely haywire.
Here’s the code:
<td align="left" valign="top" width="460">
<div id="blog">
{exp:weblog:category_heading weblog="{my_weblog}"}
<h2 class="title">{category_name}</h2>
{if category_description}
{category_description}
{/if}
{/exp:weblog:category_heading}
{exp:weblog:entries weblog="{my_weblog}" orderby="date" sort="desc" limit="15"}
{date_heading}
<h3 class="date">{entry_date format=' %l, %F %d, %Y '}</h3>
{/date_heading}
<h2 class="title">{title}</h2>
{summary}
{body}
{extended}
<div class="posted">Posted by {author} on {entry_date format='%m/%d'} at {entry_date format='%h:%i %A'}
{categories}
<a href="http://{path=site_index}">{category_name}</a> •
{/categories}
{if allow_comments}
({comment_total}) <a href="http://{url_title_path=">Comments</a> •
{/if}
{if allow_trackbacks}
({trackback_total}) <a href="http://{trackback_path=">Trackbacks</a> •
{/if}
<a href="http://{title_permalink={my_template_group}/comments}">Permalink</a>
</div>
{paginate}
<div class="paginate">
<span class="pagecount">Page {current_page} of {total_pages} pages</span> {pagination_links}
</div>
{/paginate}
{/exp:weblog:entries}
<a href="http://{homepage}"><< Back to main</a>
</div>
</td>Oddly, if I change “div id” to “div class”, or if I take out
{/exp:weblog:entries}, the tables look fine.
What am I missing or doing wrong?