Hi,
I won’t to change the style of my flags + country name
In BxDolTemplate.php a make some modifications like this
case 'extra_js':
$sRet = $_page['extra_js'];
break;
add new after
case 'langs_switcher':
$sRet = getLangSwitcher();
break;
In the _sub_header.html
I put the code from the Langs __langs_switcher__ like this
<div class="Langsswitcher">__langs_switcher__</div>
In the Css file
.Langsswitcher
{
position:absolute;
top:40px;
right:1px;
}
But my problem is the style right now a have
Flgas1 Countryname1
Flgas2 Countryname2
Flgas3 Countryname3
But I will more this style
Flgas1 (Countryname1) Flgas2 (Countryname2) Flgas3 (Countryname3)
And remove the country name or just to leave 2 first characters
Have someone a solution for me
