Hi
I've installed WP_Multilangues and now active languages are showing properly except for one point: there is now space between words.
This is the multilanguage code:
<?php
echo "<div id='subnav'>";
foreach($GLOBALS['AviableLanguages'] as $_K=>$_I){
if ($_I['lang_shortcode'] != $language){
$link = WP_Multilingual::LanguageLink($_SERVER['REQUEST_URI'], $_I['lang_shortcode']);
echo "<span>".$_I['name']."</span>";
}} echo "</div>";?>
And this is the CSS:
#subnav {
float: right;
color: #666666;
font-size: 10px;
width: 675px;
padding-top: 10px;
padding-bottom: 10px;
text-transform: uppercase;
text-align: right;
padding-right: 10px;}
#subnav a:link {
color: #666666;
font-size: 10px;
text-transform: uppercase;}
#subnav a:hover {
color: #990000;
font-size: 10px;
text-transform: uppercase;}
Web Site is: http://www.cinemanresa.com/fecinema/
I've tried using "word-spacing" tag and it didn't work out. Could anyone help me with this? Thanks