diff --git a/README.txt b/README.txt
index f9444dc..fc963d7 100644
--- a/README.txt
+++ b/README.txt
@@ -1,14 +1,29 @@
+Caption Filter is a module that converts WordPress-style [caption] tags into
+HTML markup. It also allows floating images left or right in a way that avoids
+allowing users access to "style" attributes, moving both the image and the
+caption at the same time.
 
-========= Installation =========
+Installation
+------------
 
 1. Enable the module on the modules page.
 
-2. Go to admin/settings/filters and configure the input format(s) that should be allowed to use this filter.
+2. Go to the admin/config/content/formats page and enable the "Caption filter"
+   to the text format(s) that should be allowed to use this filter.
 
-========= Usage =========
+3. IMPORTANT: After enabling the fitler, check the "Filter processing order"
+   section within the input format configuration. Make sure that the "Caption
+   filter" is run AFTER the "HTML filter" (if enabled). Generally having the
+   Caption filter as the last filter run will be appropriate.
+
+Usage
+-----
+
+While entering content, choose an input format that utilizes the caption filter.
+In a plain textarea, the entered code should look like this:
 
 A simple caption:
 [caption]<img src="" alt="" />This is an image caption[/caption]
 
 Aligned Caption (can be left, center or right):
-[caption align=right]<img src="" alt="" />This is a right aligned caption[/caption]
\ No newline at end of file
+[caption align=right]<img src="" alt="" />This is a right aligned caption[/caption]
diff --git a/caption-filter.css b/caption-filter.css
index b1de109..1cc216b 100644
--- a/caption-filter.css
+++ b/caption-filter.css
@@ -1,4 +1,7 @@
-/* $Id */
+/**
+ * @file
+ * Caption filter default styling for displaying image captions.
+ */
 
 div.caption-inner {
   border: 1px solid #CCC;
@@ -34,6 +37,6 @@ div.caption-center {
   text-align: center;
 }
 
-  div.caption-center .caption-inner {
-    display: inline-block;
-  }
+div.caption-center .caption-inner {
+  display: inline-block;
+}
diff --git a/caption_filter.info b/caption_filter.info
index db9587e..6f1981c 100644
--- a/caption_filter.info
+++ b/caption_filter.info
@@ -1,3 +1,4 @@
 name = Caption Filter
-description = Input Filter to style captions
-core = 6.x
+description = Filter to parse [caption] tags and allow image alignment.
+core = 7.x
+package = Input filters
