fixed tags in kb
diff --git a/public/js/kb_common.js b/public/js/kb_common.js
index 1e3fcba..6dca3f8 100644
--- a/public/js/kb_common.js
+++ b/public/js/kb_common.js
@@ -108,6 +108,7 @@
 	this.set_display(me.text);
 	
 	if(me.height) me.$w.find('.ed-text-input').css('height', me.height);
+	if(me.width) me.$w.find('.ed-text-input').css('width', me.width);
 	
 	// edit
 	me.$w.find('.ed-text-edit').click(function() {
diff --git a/utilities/page/question_view/question_view.js b/utilities/page/question_view/question_view.js
index ea1a2dc..e479e13 100644
--- a/utilities/page/question_view/question_view.js
+++ b/utilities/page/question_view/question_view.js
@@ -90,6 +90,7 @@
 		$(w.add_answer_area, '<h3>Add your Answer</h3>\
 			<div class="help">In markdown format</div>');
 		this.input = $a(w.add_answer_area, 'textarea');
+		$(this.input).css({width: "90%", height: "200px"});
 		//wn.tinymce.add_simple(this.input);
 		
 		this.btn = $btn($a(w.add_answer_area, 'div'), 'Post', function() {
@@ -174,7 +175,8 @@
 		text: data.answer,
 		inp_class: 'qv-ans-input',
 		disp_class: 'qv-ans-text',
-		height: '300px'
+		height: '300px',
+		width: '90%'
 	});	
 	
 	$(edtxt.wrapper).addClass('well');
diff --git a/utilities/page/questions/questions.js b/utilities/page/questions/questions.js
index 0e88728..e7e99b5 100644
--- a/utilities/page/questions/questions.js
+++ b/utilities/page/questions/questions.js
@@ -25,19 +25,17 @@
 	// kb
 	var kb = new KnowledgeBase(body);
 	
-	// sidebar
-	this.sidebar = new wn.widgets.PageSidebar($(wrapper).find('.questions-tags').get(0), {
-		sections: [
-			{
-				title: 'Top Tags',
-				render: function(body) {
-					new wn.widgets.TagCloud(body, 'Question', function(tag) 
-						{ kb.set_tag_filter(tag) });
-				}				
+	wn.model.with_doctype("Question", function() {
+		this.sidebar_stats = new wn.views.SidebarStats({
+			doctype: "Question",
+			stats: ["_user_tags"],
+			parent: $(wrapper).find('.questions-tags'),
+			set_filter: function(fieldname, label) {
+				kb.set_filter(fieldname, label);
+				//me.set_filter(fieldname, label);
 			}
-		]
-	});
-	set_title('Knowledge Base');
+		});	
+	})
 }
 
 // knowledge base object
@@ -137,6 +135,9 @@
 
 	}
 
+	this.set_filter = function(fieldname, label) {
+		this.set_tag_filter({label:label});
+	}
 	// add a tag filter to the search in the
 	// main page
 	this.set_tag_filter = function(tag) {
diff --git a/website/templates/html/product_in_list.html b/website/templates/html/product_in_list.html
index 5daa44e..43b0134 100644
--- a/website/templates/html/product_in_list.html
+++ b/website/templates/html/product_in_list.html
@@ -6,7 +6,7 @@
 		{% include 'html/product_missing_image.html' %}
 		{% endif %}
 	</div>
-	<div style="height: 80px; overflow: hidden; font-size: 80%;">
+	<div style="height: 100px; overflow: hidden; font-size: 80%;">
 		<h4 style="margin-bottom: 2px;"><a href="{{ page_name }}">{{ item_name }}</a></h4>
 		<p class="help">Item Code: {{ name }}</p>
 	</div>
diff --git a/website/templates/pages/attributions.html b/website/templates/pages/attributions.html
index e587484..2d195ba 100644
--- a/website/templates/pages/attributions.html
+++ b/website/templates/pages/attributions.html
@@ -11,8 +11,7 @@
 {% set title="ERPNext - Web Based, Open Source ERP" %}
 
 {% block content %}
-<div class="layout-attributions">
-	<div class="layout-main">
+<div class="layout-attributions span12">
 	<h3>This website is made using these Awesome Open Source Projects <i class="icon-heart" style="color: red"></i></h3>
 	<hr>
 	<table class="table table-bordered table-striped">
@@ -105,6 +104,5 @@
 	</table>
 
 	<p class="alert">Note: A link to this page must be easily accessible.</p>
-	</div>
 </div>
 {% endblock %}
\ No newline at end of file