1. newfocusdk
  2. Features Request
  3. Monday, February 09 2015, 01:45 PM
Hi,
I want to give a fixed hight to my additional images, but the width should automatically resize with it. I don't want to give a fixed width to these images. Is it possible? What is the easiest solution for this?
admin Accepted Answer
Admin
Hi,
to do this you can make simple code modification.

in file /administrator/com_jsn/helpers/fields/images at line 151 replace this
$foo->image_ratio_crop = true;

with this
$foo->image_ratio_crop = false;


Now with normal upload (no crop/webcam) the parameter height/width will work as max-height/max-width, so you can set for example:
height=your fixed height
width=100000000000

now all images have fixed height and variable width.
  1. more than a month ago
  2. Features Request
  3. # 1
newfocusdk Accepted Answer
Content Protected
  1. more than a month ago
  2. Features Request
  3. # 2
admin Accepted Answer
Admin
Sorry,
try this:

replace this at line 151 (main image) and 141 (thumbs) this code
$foo->image_ratio_crop = true;

with this
$foo->image_ratio = true;
  1. more than a month ago
  2. Features Request
  3. # 3
newfocusdk Accepted Answer
Hi again,
It works almost... but on the list 'User Lists (table)' site the thumb's width remain the same and its height is changing. I set the thumbs height and width in the 'Option Image Field' as you suggested. I tried to change the thumbs height and width in the image.php and clear the caches etc. but still the height is changing.

It works fine with the main image on the profile sites.
  1. more than a month ago
  2. Features Request
  3. # 4
admin Accepted Answer
Admin
Hi,
now all the images have a height of 250pixel, the problem is CSS, in list template file there are these lines:
.listusers img{width:180px; margin: 20px 20px;}
.listusers .name,.listusers .formatname{font-weight:bold; margin-top: 25px;}
.listusers .formatname{font-weight:bold; font-size:16px;}

you can replace with something like these:
.listusers .avatar_mini img{width:180px; margin: 20px 20px;}
.listusers .kunstvaerk_mini img{width:auto;height:250px; margin: 20px 20px;}
.listusers .name,.listusers .formatname{font-weight:bold; margin-top: 25px;}
.listusers .formatname{font-weight:bold; font-size:16px;}
  1. more than a month ago
  2. Features Request
  3. # 5
newfocusdk Accepted Answer
Content Protected
  1. more than a month ago
  2. Features Request
  3. # 6
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.