I have 2 tables side by side. I need them to always take up 100% of the screen, no matter what size screen they are being viewed on. I can get it to work, but viewing on different size screens will sometimes either not show all of it or pushes the 2nd table to the botton. Will pay someone $10 via paypal if they can get it to function the way I need it to. Please message me and I will give you link to page. Thanks.
Without actually seeing the code itself you could do something similar to this: <html> <head> <title>Your Page</title> <style> .table1, .table2 { width: 50%; display: inline; } </style> </head> <body> <table class="table1"> </table> <table class="table2"> </table> Code (markup): Just edit the widths to whatever you need them to be