diff --git a/www/cipher.html b/www/cipher.html
index 499e7ee..2a6eae0 100644
--- a/www/cipher.html
+++ b/www/cipher.html
@@ -49,7 +49,7 @@
       <a class="magick-nav-item " href="command-line-options.html">Options</a>
       <a class="magick-nav-item " href="api.html">Development</a>
       <a class="magick-nav-item" href="http://www.imagemagick.org/discourse-server/">Community</a>
-      <a class="magick-nav-item navbar-right " href="http://www.imagemagick.org/script/search.php">Search</a>
+      <a class="magick-nav-item pull-right " href="http://www.imagemagick.org/script/search.php">Search</a>
     </nav>
   </div>
 </div>
@@ -65,15 +65,24 @@
 
 <p>Use the <a href="command-line-options.html#encipher">-encipher</a> option to scramble your image so that it is unrecognizable.  The option requires a filename that contains your passphrase.  In this example we scramble an image and save it in the PNG format:</p>
 
-<pre><span class="crtprompt"> </span><span class="crtin">convert rose.jpg -encipher passphrase.txt rose.png</span></pre>
+<pre>
+convert rose.jpg -encipher passphrase.txt rose.png
+</pre>
+
 <p>Here we encipher an image using another image as the passphrase:</p>
 
-<pre><span class="crtprompt"> </span><span class="crtin">convert rose.jpg -encipher smiley.gif rose.png</span></pre>
+<pre>
+convert rose.jpg -encipher smiley.gif rose.png
+</pre>
+
 <h2 class="magick-header"><a id="decipher"></a>Decipher an Image</h2>
 
 <p>Use the <a href="command-line-options.html#decipher">-decipher</a> option to unscramble your image so that it is recognizable once again.  The option requires a filename that contains your passphrase.  In this example we unscramble an image and save it in the JPEG format:</p>
 
-<pre><span class="crtprompt"> </span><span class="crtin">convert rose.png -decipher passphrase.txt rose.jpg</span></pre>
+<pre>
+convert rose.png -decipher passphrase.txt rose.jpg
+</pre>
+
 <h2 class="magick-header"><a id="caveats"></a>Encipher and Decipher Caveats</h2>
 
 <p>Some formats do not support enciphered pixels-- the JPEG or GIF format, for
@@ -109,7 +118,7 @@
 
 </div>
   <footer class="magick-footer">
-    <div class="magick-nav-item navbar-left">
+    <div class="magick-nav-item pull-left">
       <a href="support.html">Donate</a>
     </div>
     <p><a href="sitemap.html">Sitemap</a> •
@@ -127,7 +136,7 @@
   <script src="https://localhost/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
   <script src="../js/bootstrap.min.js"></script>
   <script type="text/javascript">
-    /*  */
+    /* <![CDATA[ */
     (function() {
         var s = document.createElement('offline-script'), t = document.getElementsByTagName('offline-script')[0];
         s.type = 'text/javascript';
@@ -135,7 +144,7 @@
         s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
         t.parentNode.insertBefore(s, t);
     })();
-    /*  */
+    /* ]]> */
   </script>
 </div>
 </body>