Hi fredalva !
You can select color by way :
– Go to admin >> extensions >> template manager >> JA avior –> select color in Color Variation box.
Remove color tool by way :
Open ja_templatetools file in templatesja_avior folder find following code section :
if ($ja_tools & 4){//show color tools
?>
<span class="ja-color-theme">
<?php
foreach ($this->_ja_color_themes as $ja_color_theme) {
echo "
<a><img style="cursor: pointer;" src="".$this->templateurl()."/images/".$ja_color_theme.( ($this->getParam(JA_TOOL_COLOR)==$ja_color_theme) ? "-hilite" : "" ).".".$imgext."" title="".$ja_color_theme." color" alt="".$ja_color_theme." color" id="ja-tool-".$ja_color_theme."color" onclick="switchTool('".$this->template."_".JA_TOOL_COLOR."','$ja_color_theme');return false;" /></a>
";
}
?>
</span>
<?php
}
remove obove code section.