Hello, I found a simple way to fix this problem :
please edit file: "\components\com_phocadownload\views\category\tmpl\default.php" if you already installed
Phoca Download Components, or edit file: "\front\views\category\tmpl\default.php" in components zip file,
then add few html tags:
line 277: find
Code: Select all
$playerOutput .= '<div class="pdplay'.$this->tmpl['button_style'].'"><div>';
replace with:
Code: Select all
$playerOutput .= '<nobr><div class="pdplay'.$this->tmpl['button_style'].'"><div>';
line 284: find
replace with:
Code: Select all
$playerOutput .= '</nobr></div></div>';
line 298: find
Code: Select all
$previewOutput.= '<div class="pdpreview'.$this->tmpl['button_style'].'"><div>';
replace with:
Code: Select all
$previewOutput.= '<nobr><div class="pdpreview'.$this->tmpl['button_style'].'"><div>';
line 311: find
replace with:
Code: Select all
$previewOutput.= '</nobr></div></div>';
line 318: find
Code: Select all
$detailOutput.= '<div class="pddetails'.$this->tmpl['button_style'].'"><div>';
replace with:
Code: Select all
$detailOutput.= '<nobr><div class="pddetails'.$this->tmpl['button_style'].'"><div>';
line 320: find
replace with:
Code: Select all
$detailOutput.= '</nobr></div></div>';
line 324: find
Code: Select all
$downloadOutput .= '<div class="pddownload'.$this->tmpl['button_style'].'"><div>';
replace with:
Code: Select all
$downloadOutput .= '<nobr><div class="pddownload'.$this->tmpl['button_style'].'"><div>';
line 328: find
Code: Select all
$downloadOutput .= '</div></div>';
replace with:
Code: Select all
$downloadOutput .= '</nobr></div></div>';
you can see how it works at
http://www.abokuo.com/2010-05-12-03-39- ... ory/5.html, i hope it will be useful.
Thank Jan that create Phoca Download components, it's wonderful!
