Forum Moderators: not2easy
although pagination is used to show 10 comments per page, the height of the table varies depending upon the quantity of text in each comment.
Now I want to position a footer just below the comments section... so that wherever the comments section ends, the footer starts
But I am unable to figure out a way to position something absolutely(comments table in this case) and then some thing else(footer) relative to the first
I tried using position:relative; but it doesnt work
Any solutions ?
Thanks
PS> The footer is a seperate .php file that will be included in the main page
The problem is how you position it via the CSS. Absolute positioning means it is extremely hard to position anything under it if you don't know the height the absolutely positioned block will turn out to be.
Try not using absolute positioning and it'll work.