
Originally Posted by
Medyman
It would best if you posted some code and/or a link to a test page with the problem.
1) Overflow:visible is the default value. Unless you're explicitly changing it elsewhere, there is no point in add this property. And, yes, it does work in FF.
2) Are you hardcoding the height of whatever element your comments come into? With a overflow:hidden property? That might be a reason why they're not showing up. A solution would be to not specify the height at all. This way, the div will expand to encompass all of your content, thereby increasing in height and moving the footer down in the process.
Hope that helps. Otherwise, please post a link so that we can see what's going on. Sounds like other problems are afoot.
Many thanks for your reply.
OK, I have gathered the code for your perusal below. All apdivs are centered within a containing relative div. No overflow values are set as yet.
Page Code
HTML Code:
<div id="container">
<div id="title">
<h1><<NAME>></h1>
</div>
<div id="rightad"><a href="http://www.linkfame.com/peternorthdvd/go.php?pr=8&su=1&si=100&pa=index&ar=&ad=177340&campaign=1384" target="_blank"></a></div>
<div id="flashplayer"><<FALSHPLAYER>></div>
<div id="vdetails">
<div class="heading" id="detailshd">Details:</div>
<div id="details">
<table width="100%" cellpadding="5" cellspacing="0">
<tr>
<td colspan="2" ><span class="dtheading">- From:</span> <span class="mediumlink"><a href="<<FROMMOVIELINK>>" target="_blank"><<FROMMOVIE>></a></span>
<div class="mediumlink"></div></td>
</tr>
<tr>
<td colspan="2" class="dtlist"><span class="dtheading">- Length:</span> <span class="mediumtext"><<VIDLENGTH>></span></td>
</tr>
<tr>
<td colspan="2" class="dtlist"><span class="dtheading">- Views:</span> <span class="mediumtext"><<VIEWCOUNT>></span></td>
</tr>
<tr>
<td colspan="2" class="dtlist"><span class="dtheading">- Starring:</span> <span class="mediumtext"><<STARRING>></span></td>
</tr>
<tr>
<td colspan="2" class="dtlist"><span class="dtheading">- Date Added:</span> <span class="mediumtext"><<DATE>></span></td>
</tr>
<tr>
<td colspan="2" class="dtlist"><img src="graphics/LightLinePixel.gif" width="435" height="1" /></td>
</tr>
<tr>
<td class="smalltext">URL:
<label></label></td>
<td><input name="URL" type="text" id="URL" value="<<URL>>" size="60" /></td>
</tr>
</table>
</div>
</div>
<div id="comments">
<div class="heading" id="commentshd">Add your comments: </div>
<br />
<br />
<<COMMENTS>><br />
<br />
<label></label>
</div>
<div id="relvids">
<div class="heading" id="relvidhd">Related Videos: </div>
<br />
<br />
<<RELATEDLIST>></div>
<div id="footer">
<div align="center">Footer Navigation and Copyright </div>
</div>
</div>
External Style Sheet Code
Code:
#container {
position:relative;
width:760px;
z-index:1;
margin-right: auto;
margin-left: auto;
height: 1200px;
}
#title {
position:absolute;
left:0px;
top:10px;
width:400px;
height:25px;
z-index:1;
}
#rightad {
position:absolute;
left:476px;
top:45px;
width:285px;
height:288px;
z-index:2;
}
#flashplayer {
position:absolute;
left:0px;
top:45px;
width:450px;
height:400px;
z-index:3;
}
#vdetails {
position:absolute;
left:0px;
top:475px;
width:450px;
height:235px;
z-index:4;
border: 1px solid #CCCCCC;
}
#comments {
position:absolute;
left:0px;
top:735px;
width:450px;
z-index:7;
border: 1px solid #CCCCCC;
height: 400px;
}
#relvids {
position:absolute;
left:475px;
top:475px;
width:285px;
z-index:6;
border: 1px solid #CCCCCC;
}
#detailshd {
position:absolute;
left:5px;
top:5px;
width:70px;
height:20px;
z-index:1;
}
#commentshd {
position:absolute;
left:5px;
top:5px;
width:190px;
height:20px;
z-index:1;
}
#details {
position:absolute;
left:5px;
top:35px;
width:435px;
height:185px;
z-index:2;
}
#relvidhd {
position:absolute;
left:5px;
top:5px;
width:151px;
height:28px;
z-index:1;
}
#footer {
position:absolute;
left:0px;
width:760px;
height:110px;
z-index:1;
border-top-width: 1px;
border-right-width: 0px;
border-bottom-width: 1px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-top-color: #CCCCCC;
border-bottom-color: #CCCCCC;
background-color: #E1E1E1;
top: 1090px;
}
#copyright {
position:relative;
left:280px;
top:125px;
width:200px;
height:20px;
z-index:1;
Bookmarks