Help with Side By Side Tables. Will Pay $10 for the fix

Discussion in 'HTML & Website Design' started by smrtime, Nov 7, 2013.

  1. #1
    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.
     
    smrtime, Nov 7, 2013 IP
  2. Pudge1

    Pudge1 Well-Known Member

    Messages:
    912
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    140
    Digital Goods:
    1
    #2
    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
     
    Pudge1, Nov 7, 2013 IP