Quote:
Originally Posted by fwulfers
This was mentioned before but not a high priority. When you click on an image and it opens up, it is set to display at a certain size. Looks to be a width of about 550px. It would be nice to display the actual size of the image if it is larger than 550px.
|
In the template microclassifieds_view_item, at the head section (around 60th line), there is:
Code:
<script>
$(document).ready(function(){
$("a[rel='lightbox']").colorbox({transition:"none", width:"640", height:"480"});
});
</script>
Try to change it to width:auto, height:auto. If does not works, changed it to fix dimensions, eg width:"800", height:"600"
Chris