Not sure what I did, but I got my table to load. Problem is its loading with the UI-Darkness and I prefer the Smoothness.
How/Where do I make this change?
Thanks!
/*
* Override styles needed due to the mix of three different CSS sources! For proper examples
* please see the themes example in the 'Examples' section of this site
*/
.dataTables_info { padding-top: 0; }
.dataTables_paginate { padding-top: 0; }
.css_right { float: right; }
#example_wrapper .fg-toolbar { font-size: 0.8em }
#theme_links span { float: left; padding: 2px 10px; }
Replies
http://www.datatables.net/styling/themes/smoothness
change the jui_theme you import in your css style, line 14 of the source (line 4 below)
[code]
@import "/media/css/site_jui.ccss";
@import "/release-datatables/media/css/demo_table_jui.css";
@import "/media/css/jui_themes/smoothness/jquery-ui-1.7.2.custom.css";
/*
* Override styles needed due to the mix of three different CSS sources! For proper examples
* please see the themes example in the 'Examples' section of this site
*/
.dataTables_info { padding-top: 0; }
.dataTables_paginate { padding-top: 0; }
.css_right { float: right; }
#example_wrapper .fg-toolbar { font-size: 0.8em }
#theme_links span { float: left; padding: 2px 10px; }
[/code]