CSS Not matching Template

CSS Not matching Template

xtremer360xtremer360 Posts: 84Questions: 2Answers: 0
edited August 2011 in General
I'm trying to figure out why my css isn't acting the way it should be with the table pagination as the template is.

My Page: http://kansasoutlawwrestling.com/kowmanager/

Make sure you click Site then scroll down to Templates

Template: http://kansasoutlawwrestling.com/admintemp/tables.html

Any ideas?

Replies

  • allanallan Posts: 63,530Questions: 1Answers: 10,473 Site admin
    If you have a look at the two tables in Firebug you'll see that the classes which have been applied to the two tables (specifically the pagination elements) are significantly different. Looks like you have bJQueryUI on one of them and not the other.

    Allan
  • xtremer360xtremer360 Posts: 84Questions: 2Answers: 0
    Thank you Allan.
  • xtremer360xtremer360 Posts: 84Questions: 2Answers: 0
    I was able to fix that but I'm trying to figure why when I applied this:

    [code]
    var oTable = $('.datatable').dataTable({
    "sDom" : '<"wrapper"fltp>',
    "sPaginationType" : "full_numbers",
    "aoColumnDefs" : [{
    "bSortable" : false,
    "aTargets" : [0]
    }, {
    "bSortable" : false,
    "aTargets" : [-1]
    }]
    });
    [/code]

    isn't still having the first column and last column as sortable.
This discussion has been closed.