Re: How do I add Footers
It is not possible to autoextend the central (content) part of the page using only BV.
I do it dynamically in some of my php scripts, when the content has to extend down the page, using either self generated tables, or php calculation of the footer position.
To see what i mean, try this link: http://www.dbtechnosystems.com/IDC_new/test_add.php
As you seee, the more products you add, the total box, the instructions, and the footer, move down. In the same time, the background also extends.
This is done using div's, whose absolute from top position is simply calculated based on the number of items in the cart.
If there is no mathematical relationship between the content and the extend, you can only do it using tables, and placing the footer in the very bottom cell.
It is not possible to autoextend the central (content) part of the page using only BV.
I do it dynamically in some of my php scripts, when the content has to extend down the page, using either self generated tables, or php calculation of the footer position.
To see what i mean, try this link: http://www.dbtechnosystems.com/IDC_new/test_add.php
As you seee, the more products you add, the total box, the instructions, and the footer, move down. In the same time, the background also extends.
This is done using div's, whose absolute from top position is simply calculated based on the number of items in the cart.
If there is no mathematical relationship between the content and the extend, you can only do it using tables, and placing the footer in the very bottom cell.
Comment