Im Joomla Blog Layout lässt sich die Größe der Beitragsbilder nicht anpassen.
Grund:
<script src="/media/system/js/caption.js" type="text/j-avascript"></script>
Um Dieses Skript loszuwerden gibt es einen sehr üblichen Trick in Joomla - unset():
//get the array containing all the script declarations$document = JFactory::getDocument(); $headData = $document->getHeadData();$scripts = $headData['scripts'];
//remove your script, i.e. mootoolsunset($scripts['/media/system/js/mootools-core.js']);unset($scripts['/media/system/js/mootools-more.js']);unset($scripts['/media/system/js/caption.js']);
$headData['scripts'] = $scripts;$document->setHeadData($headData);






