Quote:
Originally Posted by gits
hi ...
the following is hidden in my FF:
[HTML]<div id="blah" style="display:none">
<table width="100%" class="inputtable" cellspacing="0">
<tr class="inputtd">
<font class="textfont">
The Classes for Link :<%=linkname%>
</font>
</tr>
</table>
</div>[/HTML]
so i cannot reproduce your error. when i set display:block it is visible so there must be another error ... is there any script that should set the display-property?
could you post a link to a testpage or the entire html?
kind regards
I found out the error.
I did not write my text message in a <td>
When i wrote like the following it is working perfectly.
[HTML]<div id="blah" style="display:none">
<table width="100%" class="inputtable" cellspacing="0">
<tr class="inputtd">
<td> //here is the error I did not write this tag
<font class="textfont">
The Classes for Link :<%=linkname%>
</font>
</td>
</tr>
</table>
</div>[/HTML]
Thanks for your reply.