diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js
index f86b346b9620f2718ee123a76854ba92fd58a489..adb27cec3f65fa7d399c7cc5d73b7e0c08eda88e 100644
--- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js
+++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js
@@ -667,7 +667,7 @@ var FormUtil = new function() {
 	}
 	
 	this.getToolbar = function(toolbarModel) {
-		var $toolbarContainer = $("<div>", { class : 'toolBox' });
+		var $toolbarContainer = $("<div>", { class : 'toolBox', style : "width: 100%;" });
 		
 		for(var tbIdx = 0; tbIdx < toolbarModel.length; tbIdx++) {
 			var $toolbarComponent = toolbarModel[tbIdx].component;
diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleTable/SampleTableView.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleTable/SampleTableView.js
index d918a72cc27c9eef82a765b302ebdccdf23cbe6f..8b8ab40aba8427490270cad973d8146715dfab1e 100644
--- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleTable/SampleTableView.js
+++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleTable/SampleTableView.js
@@ -23,7 +23,7 @@ function SampleTableView(sampleTableController, sampleTableModel) {
 		var _this = this;
 		$container.empty();
 		if(this._sampleTableModel.title) {
-			var $title = $("<h1>").append(this._sampleTableModel.title);
+			var $title = $("<h2>").append(this._sampleTableModel.title);
 			$container.append($title);
 		}
 		
@@ -63,19 +63,23 @@ function SampleTableView(sampleTableController, sampleTableModel) {
 			}
 		}
 		
+		var tableToolbarModel = [];
 		if(this._sampleTableModel.experimentIdentifier) {
 			var $sampleTypes = this._getLoadedSampleTypesDropdown();
-			toolbarModel.push({ component : $sampleTypes, tooltip: "Select a sample type to visualize on the table" });
+			tableToolbarModel.push({ component : $sampleTypes, tooltip: "Select a sample type to visualize on the table" });
 			var $options = this._getOptionsMenu();
 			toolbarModel.push({ component : $options, tooltip: null });
 		} else if(this._sampleTableModel.projectPermId) {
 			var $sampleTypes = this._getLoadedSampleTypesDropdown();
-			toolbarModel.push({ component : $sampleTypes, tooltip: "Select a sample type to visualize on the table" });
+			tableToolbarModel.push({ component : $sampleTypes, tooltip: "Select a sample type to visualize on the table" });
 		} else {
 			var $allSampleTypes = this._getAllSampleTypesDropdown();
-			toolbarModel.push({ component : $allSampleTypes, tooltip: "Select a sample type to visualize on the table" });
+			tableToolbarModel.push({ component : $allSampleTypes, tooltip: "Select a sample type to visualize on the table" });
 		}
+		
 		$container.append(FormUtil.getToolbar(toolbarModel));
+		$container.append("<br>");
+		$container.append(FormUtil.getToolbar(tableToolbarModel));
 		$container.append(this._tableContainer);
 	}