Odd situation where only SOME text doesnt display. If the IE6 user were to highlight the area, the text then shows up, only when highlighted.
any ideas where i went wrong here? its a mix and match external css and inline styles, is that an issue?
the class projectName doesnt display at all on IE6. The objective seems to show, but not leader and category and they are asp labels outside of the spans.
this is an internal site, so i dont know how to run css validator against this. Again, it looks perfect in 7.
thanks for any input
any ideas where i went wrong here? its a mix and match external css and inline styles, is that an issue?
the class projectName doesnt display at all on IE6. The objective seems to show, but not leader and category and they are asp labels outside of the spans.
this is an internal site, so i dont know how to run css validator against this. Again, it looks perfect in 7.
Code:
<div id="divProjectHeaderView" runat="server">
<div style="float: right; text-align: right;">
<span class="tdRight75B">Create Date:</span>
<asp:Label ID="lblProjectDate" runat="server"></asp:Label>
<br />
<span class="tdRight75B">Last Update:</span>
<asp:Label ID="lblProjectLastUpdate" runat="server"></asp:Label>
<br />
<asp:LinkButton ID="lbEditProject" runat="server" Text="Edit Project" OnClick="Edit_Project"></asp:LinkButton>
</div>
<div class="projectName">
<asp:Label ID="lblProjectName" runat="server"></asp:Label>
</div>
<span class="tdRight100B">Project Leader:</span><asp:Label ID="lblProjectLeader"
runat="server"></asp:Label>
<br />
<span class="tdRight100B">Category:</span><asp:Label ID="lblProjectCat" runat="server"></asp:Label>
<br />
<span class="tdRight100B" style="float: left;">Objective:</span>
<div style="float: left; margin-bottom: 10px;">
<asp:Label ID="lblProjectObjective" runat="server"></asp:Label>
</div>
</div>
Code:
#divProjectHeaderView
{
font-size: 9pt;
font-family: Arial;
}
.projectName
{
font-size: 12pt;
color: Navy;
}
.tdRight100B
{
display: inline-block;
width: 100px;
text-align: right;
font-weight: bolder;
padding-right: 3px;
vertical-align: top;
}
thanks for any input