<blockquote>
1. In previous templates I have posted the Joom!Fish language module as an ul list of images in different module positions and not gotten bullets, I get them with Villadi. How can I remove them?
</blockquote>
Open template_css.css, add following style:
#ja-rightcol ul.jflanguageselection li {
background: none;
}
<blockquote>
2. Since I will run a site with various languages, I’m requesting a solution to translate the “You are here:” text in the pathway so that it comes up in different languages when my readers switch languages. How would I go about that?
</blockquote>
Open template index.php file, replace “You are here:” with following code:
<?php
$lang = mosGetParam( $_REQUEST, 'lang', '');
switch ($lang) {
case 'fr':
echo 'You are here in french:';
break;
default:
echo 'You are here:';
break;
}?>
You could add more languages and translate this text to those languages.