Hi
You can remove it from /templates/ja_wall/css/template.css around line 1190
#toolbar {
background-color: #333333
display: none; <------add this line
float: right;
height: 40px;
position: relative;
}
or you can manage this file templatesja_wallindex.php
<!-- TOOLBAR -->
<div id="toolbar" class="has-toggle">
<div class="btn-toggle toolbar-toggle">
<span> </span><strong>Toolbar</strong>
</div>
<div class="inner toolbar-inner clearfix">
<ul>
<li id="toolbar-display">
<dl>
<dt>Display</dt>
<dd id="toolbar-display-imageview" class="first last"><span>Image View</span></dd>
</dl>
</li>
<li id="toolbar-basegrid">
<dl>
<dt>Grid</dt>
<dd id="toolbar-basegrid-s" class="first"><span>S</span></dd>
<dd id="toolbar-basegrid-m"><span>M</span></dd>
<dd id="toolbar-basegrid-l"><span>L</span></dd>
<dd id="toolbar-basegrid-xl" class="last"><span>XL</span></dd>
</dl>
</li>
</ul>
</div>
</div>
<script type="text/javascript">
//toolbar
jQuery(document).ready(function($){
$('#toolbar-basegrid dd').toolbar({ group: 'basegrid', type: 'single', val: '<?php echo $this->params->get('jawall_basegrid', 'm') ?>'});
$('#toolbar-display dd').toolbar({ group: 'display', type: 'toggle', val: '<?php echo $this->params->get('jawall_display', '') ?>'});
});
</script>
<!-- //TOOLBAR -->