Hi BigStef,
Edit your mosmagazine.php and find this (line 312 aprox.):
function quote($text, $pos="", $class=""){
global $mosConfig_live_site, $mosConfig_absolute_path;
$config=$mosConfig_absolute_path."/administrator/components/com_magazine/magazine.config.php";
@include( $config);
if($pos == "")
//angek: magazine-53: removed align="right" from quotes_bottom
$pos = "left";
$html =$text.' <div class="'.$_CONFIG['css_article_quote1'].'" style="float:'.str_replace("align=","",$pos).';">
<div class="bl"><div class="br"><div class="tl"><div class="tr">
<img src="'.$mosConfig_live_site.'/components/com_magazine/layouts/images/quotes_top.gif" alt="Quotation" align="left">
'.
$text
.' <img src="'.$mosConfig_live_site.'/components/com_magazine/layouts/images/quotes_bottom.gif" alt="Quotation">
<br />
</div></div></div></div>
</div>';
return $html;
}
Change with this:
function quote($text, $pos="", $class=""){
global $mosConfig_live_site, $mosConfig_absolute_path;
$config=$mosConfig_absolute_path."/administrator/components/com_magazine/magazine.config.php";
@include( $config);
if($pos == "")
//angek: magazine-53: removed align="right" from quotes_bottom
$pos = "left";
$html =$text.' <div class="'.$_CONFIG['css_article_quote1'].'" style="float:'.str_replace("align=","",$pos).';">
<div class="bl"><div class="br"><div class="tl"><div class="tr">
<img src="'.$mosConfig_live_site.'/components/com_magazine/layouts/images/quotes_top.gif" alt="Quotation" align="left">
<div align="justify">
'.
$text
.' </div><img src="'.$mosConfig_live_site.'/components/com_magazine/layouts/images/quotes_bottom.gif" alt="Quotation">
<br />
</div></div></div></div>
</div>';
return $html;
}
Save the changes and let me know if it works.
Regards,