Hi, I'm not an expert when it comes too designing. so i was wondering if anyone could help me.
I have a page that generates A LOT of data from the database via php and puts it in a table so I can never determine the current height of the window/web page.
and the problem is that I have a <div> on the left acting as a sidebar with links in it, but that div doesn't have the current height of the window when the page loads and just cuts off in the middle.
height:100% doesn't work
I used jquery
<script type='text/javascript'>
$("#leftpanel").css("min-height", $(document).height());
</script>
it worked but it won't stretch far enough if there's to too much data or if the page is too long
thanks to anyone who can help. I don't really know what to do.