Copy link to clipboard
Copied
Ok I have a project I need to do and it is calling for bootscrap. Where do I find this when I create a new site. Does CS6 even have it?
1. You will find Bootstrap at http://getbootstrap.com/
2. Dreamweaver CS6 does not have inbuilt features for Bootstrap, you will need the latest version of Dreamweaver for this.
You could have a look at https://www.dmxzone.com/go/22360/dmxzone-bootstrap-3 for a commercial solution to use Bootstrap with DWCS6, otherwise you could learn from Bootstrap 3 Tutorial
Copy link to clipboard
Copied
1. You will find Bootstrap at http://getbootstrap.com/
2. Dreamweaver CS6 does not have inbuilt features for Bootstrap, you will need the latest version of Dreamweaver for this.
You could have a look at https://www.dmxzone.com/go/22360/dmxzone-bootstrap-3 for a commercial solution to use Bootstrap with DWCS6, otherwise you could learn from Bootstrap 3 Tutorial
Copy link to clipboard
Copied
katiel2291 wrote
Ok I have a project I need to do and it is calling for bootscrap. Where do I find this when I create a new site. Does CS6 even have it?
Aptly named - bootscrap.
Copy link to clipboard
Copied
You can copy and paste the requisite code into a new document. Nothing to download.
Bootstrap and jQuery are open source and hosted on content distribution networks (CDNs).
See link & code below
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--latest Bootstrap CSS-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>My First Bootstrap Page</h1>
<p>This is some text.</p>
</div>
<!--jQuery-->
<script src="https://code.jquery.com/jquery-1.12.2.min.js" integrity="sha256-lZFHibXzMHo3GGeehn1hudTAP3Sc0uKXBXAzHX1sjtk=" crossorigin="anonymous"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>
Copy link to clipboard
Copied
You missed the boat! To my understanding that this is not what is being asked for here. People asking for a way to incorporate bootstrap into the dreamwaver cs6 (an old version which is no longer supported nevertheless some people still use that ) There is a workarownd for a manual install of bootstrap into cs6 (later on shall publish some guide) so it then works same as on cc versions.