I am struggling to integrate Bootstrap into Drupal. I have used the 'row' class for the contact ID and added col-sm-12 for title and desc, but it is not working as expected. The width of the container seems off. Also, the accordion.js script works fine, but the CSS for Bootstrap does not seem to be applied correctly.
(function ($) {
function contactList(){
// JavaScript code goes here
}
jQuery(document).ready(function($) {
contactList();
});
});
.contactForm{
/* CSS Styles go here */
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>