PDA

View Full Version : Div displays w/o text in IE, but works in FF.



lariat1997
29 May 2009, 01:25 PM
Hey all,

I have a div that contains text. When I view it in IE 7, the text does not appear. But in FF it does appear correctly.

When I view source in IE, everything looks correct. Even the text that is not rendering shows up in the source.

Any ideas?

CSS Code below:


.links, .notifications_0, .notifications_1, .notifications_2{
border:1px solid #000;
}


HTML Code below:


<div class="meta">
<div class="terms">
<ul class="links inline">
<li class="taxonomy_term_34 first"><a href="/category/milestone" rel="tag" title="">Milestone #1</a></li>
<li class="taxonomy_term_33"><a href="/category/target-type" rel="tag" title="">System #1</a></li>
</ul>
</div>
</div>

<div class="links">
<ul class="links inline">
<li class="comment_add first"><a href="/comment/reply/88#comment-form" title="Share your thoughts and opinions related to this posting.">Add new comment</a></li>
<li class="notifications_0"><a href="/notifications/unsubscribe/165?destination=node/88">Unsubscribe from: This post</a></li>
<li class="notifications_1"><a href="/notifications/subscribe/5/nodetype/type/new_event?destination=node/88">Subscribe to: Posts of type <em>New Event</em></a></li>
<li class="notifications_2 last"><a href="/notifications/subscribe/5/author/author/5?destination=node/88">Subscribe to: Posts by <em>admin</em></a></li>
</ul>
</div>


Thanks in advance.