diff --git a/themes/bootprint/css/style.css b/themes/bootprint/css/style.css
index 32e112e16678bab2cefeae98db924982c7183ac2..9968cbce24fc271f82da0afdd88e23b7dc19212e 100644
--- a/themes/bootprint/css/style.css
+++ b/themes/bootprint/css/style.css
@@ -136,6 +136,7 @@ select, .btn:not(.btn-link){vertical-align:top}
 .bulkActionButtons {border-bottom:1px solid #DDD;margin-top:6px;padding-bottom:6px}
 .result {padding:6px 0}
 .result:nth-child(odd) {background:#EEE}
+.grid .result {background:none}
 .result>.checkbox {font-weight:bold;margin:2px 0 2px 1%;max-width:6%}
 .result>.checkbox input[type="checkbox"] {margin:3px auto}
 .result .middle {margin-left:1%;width:52%}
diff --git a/themes/bootstrap/templates/RecordDriver/SolrDefault/result-grid.phtml b/themes/bootstrap/templates/RecordDriver/SolrDefault/result-grid.phtml
index c4cf3f83320215d787e3d72f3a5249957798dec1..bcd491f98679783db4c088187ece801eab470207 100644
--- a/themes/bootstrap/templates/RecordDriver/SolrDefault/result-grid.phtml
+++ b/themes/bootstrap/templates/RecordDriver/SolrDefault/result-grid.phtml
@@ -10,7 +10,9 @@ $urls = $this->record($this->driver)->getLinkDetails();
 
 <div class="result <?=$this->driver->supportsAjaxStatus()?' ajaxItem':''?>">
   <input type="hidden" value="<?=$this->escapeHtml($this->driver->getUniqueID())?>" class="hiddenId" />
-  <?=$this->record($this->driver)->getCheckbox() ?></br>
+  <? if (!isset($this->hideCartControls) && $this->cart()->isActive()): ?>
+    <?=$this->record($this->driver)->getCheckbox() ?></br>
+  <? endif; ?>
   <div class="text-center" style="margin:auto;max-width:70px">
     <a href="<?=$this->recordLink()->getUrl($this->driver)?>">
       <? if ($summThumb = $this->record($this->driver)->getThumbnail('large')): ?>
diff --git a/themes/bootstrap/templates/search/list-grid.phtml b/themes/bootstrap/templates/search/list-grid.phtml
index ee26d3c30e2a196c8627ae52844e0acb377f1f06..550b82183f64abf7bab6af97e947b10b5170e00a 100644
--- a/themes/bootstrap/templates/search/list-grid.phtml
+++ b/themes/bootstrap/templates/search/list-grid.phtml
@@ -1,8 +1,8 @@
-<div class="row">
+<div class="row-fluid">
 <? $i = 0; foreach ($this->results->getResults() as $current): ?>
   <div id="result<?=$i++ ?>" class="span3 grid">
     <?=$this->record($current)->getSearchResult('grid')?>
   </div>
-  <?=($i%4==0)?'</div><div class="row">':''?>
+  <?=($i%4==0)?'</div><div class="row-fluid">':''?>
 <? endforeach; ?>
 </div>