Change height of the Image Manager + images per line
Posted: Thu Oct 27, 2005 10:45 pm
If you would like to change the height of the Image Manager in the Admin Panel, you need to set the class imageframe in the CSS file for the admin theme.
Find the file style.css in admin/themes/default/css. Addor whatever height you would like.
To select the number of images that are displayed per line in the Image Manager, find the file images.php in lib/filemanager/ImageManager/. Around line 56 you find the line
Change this number to whatever number of images to display per line.
This has been added to Tips & Tricks at http://www.cmsmadesimple.org/tips_and_tricks.shtml
Find the file style.css in admin/themes/default/css. Add
Code: Select all
.imageframe {height: 300px;}
To select the number of images that are displayed per line in the Image Manager, find the file images.php in lib/filemanager/ImageManager/. Around line 56 you find the line
Code: Select all
$image_per_line = 5;
This has been added to Tips & Tricks at http://www.cmsmadesimple.org/tips_and_tricks.shtml