Hi ya,
I use the following css for the equal height which works perfectly except with "back to top" anchor tags. Parent class has overflow:hidden property and it hide all the top bits of the page when I jump down the page by anchor tag id and "back to top" stop working. I fixed with position:relative, which works only on IE7, not on IE6 and Firefox. You can look the error on following url :
http://gist-net.com/patient-infection-clostridium.aspxany help will be appreciated and I need to fix it urgently. also any idea to hide the bottom overflow only?
#container
{
position:relative;
width:820px;
float:left;
overflow:hidden;
}
.content-container-outside
{
overflow:hidden;
}
#content-container
{
float: left;
margin:0;
width: 620px;
min-height:600px;
background-color:#ffffff;
padding:0px;
margin-bottom:-2500px;
padding-bottom:2500px;
}