Hello
OK. Try to use the following. Open inc/classes/BxDolTemplate.php file and find the following function
function _getAbsoluteLocationCss($sType, $sName)
then completely replace it with the code below
function _getAbsoluteLocationCss($sType, $sName)
{
$sLangDef = 'en';
$sLangCur = bx_lang_name();
if($sLangCur != $sLangDef) {
$sResult = $this->_getAbsoluteLocation($sType, $this->_sFolderCss, basename($sName, '.css') . '.' . $sLangCur . '.css');
if(!empty($sResult))
return $sResult;
}
return $this->_getAbsoluteLocation($sType, $this->_sFolderCss, $sName);
}
The code will do the following. If current langauge is not equal to default one (en) then the code generates updated CSS file name. For example, common.ru.css for common.css in case of the Russian language is selected. Then it will try to search for the new CSS file and if it's available then uses it otherwise uses the default one.