views:

6

answers:

0

Alright, I thought I had seen every bug out there for IE7, but I've never seen this. This is my first Tumblr blog, so I have limited experience with that. I hope someone can help!

In IE7 the main text for a post is duplicated just underneath of the original text. So basically each line of text appears twice. I have no idea what's happening, but I think it must be something to do with how I modified the theme.

The site is: www.trueshift.com

The code for an individual post in my theme is below. Thanks in advanced to anyone who replies!

{block:Posts}
  {block:Text}
  <div class="text">
    {block:Title}<h2><a href="{Permalink}">{Title}</a></h2>{/block:Title}
    {block:Date}
      <div class="dateUpper"><h3><b>{Month} {DayOfMonthWithZero}</b> | {Year}</div>
    {/block:Date}
    {Body}
  {/block:Text}

  {block:More}
    <p class="read_more_container">
      <a class="read_more" href="{permalink}">Read More <span>&rarr;<span></a>
    </p>
  {/block:More}

  {block:Quote}
  <div class="quote">
    <blockquote class="words">&#8220;{Quote}&#8221;</blockquote>
    {block:Source}<div class="source">{Source}</div>{/block:Source}
  {/block:Quote}


  {block:Link}
  <div class="link">
    <h2><a href="{URL}" {Target}>{Name}</a></h2>
    {block:Description}
    <div class="link-description">
      {Description}
    </div>
    {/block:Description}
  {/block:Link}


  {block:Video}
  <div class="video">
    {Video-500}
    {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  {/block:Video}



  {block:Audio}
  <div class="audio">
    <span class="playcount">{lang:Played PlayCount times}</span>
    {AudioPlayerBlack}
    {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  {/block:Audio}


  {block:Photo}
  <div class="photo">
    {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
    {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  {/block:Photo}

        {block:Photoset}
        <div class="photoset-post">
            {Photoset-500}
            {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
        {/block:Photoset}


  {block:Chat}
  <div class="chat">
    {block:Title}<h2>{Title}</h2>{/block:Title}
    <ul class="convo">
      {block:Lines}
      <li class="{Alt}">
        <span class="person">{block:Label}{Label}{/block:Label}</span>
        <span class="line">{Line}</span>
      </li>
      {/block:Lines}
    </ul>
  {/block:Chat}

    <ul class="post-footer">
      {block:RebloggedFrom}<li class="reblog">{lang:Reblogged from ReblogParentTitle 2}</li>{/block:RebloggedFrom}
      {block:Date}<li class="date"><h3>Posted at: {12Hour}:{Minutes}{AmPm}{/block:Date}</h3>{block:IfShowNotes}{block:NoteCount}<h3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{NoteCountWithLabel}</h3>{/block:NoteCount}{/block:IfShowNotes}</li>
      <li class="comments"><a class="dsq-comment-count" href="{Permalink}#disqus_thread">Comments</a></li>
      {block:HasTags}<li class="tags">{lang:Tags}: <ul>{block:Tags}<li><a href="{TagURL}">{Tag}</a></li>{/block:Tags}</ul></li>{/block:HasTags}
      {block:Date}

      {/block:Date}
    </ul>
  </div> <!-- end single post -->
  {/block:Posts}