Change in css file that you suggested didn't work.
However, we went to look for the solution and we found something that I would like to share with you:
In "modulesmod_realestatemanager_featuredtmpldefault.php we change next lines of code
Line: 61 - 64
----------------
this code
Code: |
else {
$img='<a href="'.JRoute::_($link1, false).'" target="_self"> <img src="'.$imageURL.'" alt="'.$row->htitle.'"
border="0" style="height: '.$image_height.'px; width: 100%;" /></a>';
}
|
we replace with this one:
Code: |
else {
$img='<a href="'.JRoute::_($link1, false).'" target="_self"> <img src="'.$imageURL.'" alt="'.$row->htitle.'"
border="0" style="height: '.$image_height.'px; width: '.$container_image_width.'px;" /></a>';
}
|
and, one more thing
Line:244
this code
Code: |
<div style="position:relative; display:inline-block; float:left; margin-right:15px; width: <?php echo $container_image_width.'px'?>;">
|
we replace with this one:
Code: |
<div style="position:relative; display:inline-block; float:left; margin-right:15px;">
|
Now Module works as I expected
I do have one question for you. Can you check if this change will be ok with all features in this module that we do not use now, but sometime in future we might use.
I just need confirmation that our fix is ok.
Thanks
Dejan