mattsmith Posted March 13, 2017 Report Share Posted March 13, 2017 I'm trying to put the recent bids in the bookings column but it just keeps going underneath, any help would be much appreciated. Here is the Code: <style> table, th, td { border: 1px solid black; } </style> </head> <body> <table width="200"> <table width="1300"> <tr> <th>Team Speak</th> <th>Bookings</th> </tr> <tr> <td><div id="ts3viewer_1096623" style=""> </div> <script src="https://static.tsviewer.com/short_expire/js/ts3viewer_loader.js"></script> <script> var ts3v_url_1 = "https://www.tsviewer.com/ts3viewer.php?ID=1096623&text=757575&text_size=12&text_family=1&text_s_color=000000&text_s_weight=normal&text_s_style=normal&text_s_variant=normal&text_s_decoration=none&text_i_color=&text_i_weight=normal&text_i_style=normal&text_i_variant=normal&text_i_decoration=none&text_c_color=&text_c_weight=normal&text_c_style=normal&text_c_variant=normal&text_c_decoration=none&text_u_color=000000&text_u_weight=normal&text_u_style=normal&text_u_variant=normal&text_u_decoration=none&text_s_color_h=&text_s_weight_h=bold&text_s_style_h=normal&text_s_variant_h=normal&text_s_decoration_h=none&text_i_color_h=000000&text_i_weight_h=bold&text_i_style_h=normal&text_i_variant_h=normal&text_i_decoration_h=none&text_c_color_h=&text_c_weight_h=normal&text_c_style_h=normal&text_c_variant_h=normal&text_c_decoration_h=none&text_u_color_h=&text_u_weight_h=bold&text_u_style_h=normal&text_u_variant_h=normal&text_u_decoration_h=none&iconset=default"; ts3v_display.init(ts3v_url_1, 1096623, 100); </script> <td><?php MainController::Run('FrontBids', 'RecentFrontPage', 5); ?></td> </div></td> </tr> </table> Quote Link to comment Share on other sites More sharing options...
web541 Posted March 13, 2017 Report Share Posted March 13, 2017 Try this <style> table, th, td { border: 1px solid black; } </style> <table width="1300"> <thead> <tr> <th>Team Speak</th> <th>Bookings</th> </tr> </thead> <tbody> <tr> <td><div id="ts3viewer_1096623" style=""></div> <script src="https://static.tsviewer.com/short_expire/js/ts3viewer_loader.js"></script> <script> var ts3v_url_1 = "https://www.tsviewer.com/ts3viewer.php?ID=1096623&text=757575&text_size=12&text_family=1&text_s_color=000000&text_s_weight=normal&text_s_style=normal&text_s_variant=normal&text_s_decoration=none&text_i_color=&text_i_weight=normal&text_i_style=normal&text_i_variant=normal&text_i_decoration=none&text_c_color=&text_c_weight=normal&text_c_style=normal&text_c_variant=normal&text_c_decoration=none&text_u_color=000000&text_u_weight=normal&text_u_style=normal&text_u_variant=normal&text_u_decoration=none&text_s_color_h=&text_s_weight_h=bold&text_s_style_h=normal&text_s_variant_h=normal&text_s_decoration_h=none&text_i_color_h=000000&text_i_weight_h=bold&text_i_style_h=normal&text_i_variant_h=normal&text_i_decoration_h=none&text_c_color_h=&text_c_weight_h=normal&text_c_style_h=normal&text_c_variant_h=normal&text_c_decoration_h=none&text_u_color_h=&text_u_weight_h=bold&text_u_style_h=normal&text_u_variant_h=normal&text_u_decoration_h=none&iconset=default"; ts3v_display.init(ts3v_url_1, 1096623, 100); </script> </td> <td><?php MainController::Run('FrontBids', 'RecentFrontPage', 5); ?></td> </tr> </tbody> </table> Bit of formatting can't hurt. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.