Hi Robert5,
Please open the file ja-menulib.php in folder templates/ja_sargas/ja_transmenu. From line 38 (or nearly) you will see this block of code:
<blockquote>foreach ($rows as $v ) {
$pt = $v->parent;
$list = @$this->children[$pt] ? $this->children[$pt] : array();
array_push( $list, $v );
$this->children[$pt] = $list;
}</blockquote>
Please select the whole block and replace with this one:
<blockquote>foreach ($rows as $v ) {
if (($v->parent == ‘0’) && ($v->type == ‘separator’)) {
continue;
}
$pt = $v->parent;
$list = @$this->children[$pt] ? $this->children[$pt] : array();
array_push( $list, $v );
$this->children[$pt] = $list;
}</blockquote>
That will ignore the separator in the Top Navigation of Transmenu.
Other menu type can be done similar.