I tried just pointing everything to the width and height in the jw_allvideos.php first like this:
<script type="text/javascript">
//<![CDATA[
window.addEvent(\'domready\', function() {
AllVideosLightBox.Init({
AVLBWidth:'.$vwidth.',
AVLBHeight:'.$vheight.'
});
AllVideosEmbed.Init();
});
//]]>
</script>
then:
$lightboxWidth = ($params->get('vwidth')) ? $params->get('vwidth') : $pluginParams->get('vwidth',400);
$lightboxHeight = ($params->get('vheight')) ? $params->get('vheight') : $pluginParams->get('vheight',300);
but neither seemed to have any affect...which seemed weird too, I thought it would at least break something, but just nothing changed.
Again any thoughts would be much appreciated, I'm quite new to the whole php, xml, joomla world but really want to learn.