> Please include these two files according to the official documents
- Bootstrap.css (or bootstrap.min.css)
- Bootstrap.js (or bootstrap.min.js)
> We only need to include bootstarp.min.css as bootstrap.min.js already included for us
> Please update your index.php, you can add the below code to include bootstrap.min.css
$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap.min.css');
$doc->addStyleSheet(‘templates/’ . $this->template . ‘/css/style.css’); $doc->addScript(‘/templates/’ . $this->template . ‘/js/main.js’, ‘text/javascript’); ?>
Before Bootstrap
After Boostrap