Why is the 3rd column close to the 2nd column ?

Why is the 3rd column close to the 2nd column ?

verlagerverlager Posts: 18Questions: 3Answers: 0

http://communitychessclub.com/games.php

$(document).ready(function (){ var table = $('#cccr').DataTable({ oSearch: {"sSearch": "<?php echo ($_GET['player']); ?>"}, "order": [ [1, "desc"], [3, "asc"], [2, "asc"] ], bPaginate: false, sScrollY: "25rem", ajax: 'games.json', deferRender: true, columnDefs: [ { targets:0, render: function ( data, type, row, meta ) { if(type === 'display'){ //data = ' '; data = '' + data + ''; } return data; } } ] }); });

Answers

  • allanallan Posts: 61,782Questions: 1Answers: 10,112 Site admin

    Why is the 3rd column close to the 2nd column

    Thanks for the link. The column widths look fairly evenly distributed, based on the content of the columns to me. Did you want a big gap between ECO and Event?

    Allan

  • verlagerverlager Posts: 18Questions: 3Answers: 0

    I'm OK. I fixed the problem by dropping bootstrap and using zurb foundation instead. Thank you for your attention in this matter.

This discussion has been closed.