Hi josephine27 !
You can do it following some steps below :
1.Open index.php file in templates/ja_larix folder, find following code section at about line 242:
<?php if ($tmpTools->getParam(JA_TOOL_USER)) { ?>
<div id="ja-usercolors" class="clearfix">
<?php $tmpTools->genToolMenu($tmpTools->getParam(JA_TOOL_USER) & 4, 'gif'); /*Color tool*/ ?>
<ul style="margin: 0 0 0 10px;">
<li><a style="background: none; text-decoration: none;" href="#Top" title="Go to top"><img src="<?php echo $tmpTools->templateurl();?>/images/top.gif" title="Goto top" alt="Go to top" /></a></li>
</ul>
</div><div class="clr"></div>
<?php } ?>
cut it and paste to top of following code section at about line 153 :
<!-- paste here -->
<?php if ($tmpTools->getParam(JA_TOOL_USER)) { ?>
<div id="ja-usertools">
<?php $tmpTools->genToolMenu($tmpTools->getParam(JA_TOOL_USER) & 3, 'png'); /*Color tool*/ ?>
</div>
<?php } ?>
2. Open template.css file in templates/ja_larix/css folder, find following code section at about line 1263 :
#ja-usercolors {
float: left;
padding: 10px 5px 4px;
}
change to :
#ja-usercolors {
font-size: 11px;
position: absolute;
top: 22px;
right: 110px;
}