I'm in the process of minifying the CSS in my project and am looking to replace CDN files with offline files.
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/r/bs-3.3.5/jq-2.1.4,dt-1.10.8/datatables.min.css"/>
<link href="https://cdn.datatables.net/responsive/2.0.0/css/responsive.bootstrap.min.css" rel="stylesheet"/>
The first URL also includes twitter-bootstrap
, which is already on the page. I've attempted to replace the CDN styles
with the following from the datatables Download Builder page
:
<link rel="stylesheet" href="css/jquery.dataTables.css"/>
<link rel="stylesheet" href="css/dataTables.bootstrap.css"/>
<link rel="stylesheet" href="css/responsive.bootstrap.css"/>
However, I'm having trouble getting the styles to apply correctly. Are these the appropriate styles to include, or should I add any other CSS files?