I love this theme but it's been a lot more difficult than I expected to increase the size of the main image being viewed from 500px to 700px. Doing so has caused a number of other issues which I have eventually figured out but one still remains.
I have sub galleries which now due to other things I've had to change have a wider cell size for the thumbnailed images than the images themselves. The images are 267x100 and I can't find any place to change this. There are settings in gallery.php and search.php for 267x100 which I changed. This changed the size of the thumbs on the main page but not in subfolders.
Can anyone tell me how to change this?
Here is the site:
http://markwiles.com (contains some nsfw material)
And here is an example of a gallery where the issue occurs:
http://markwiles.com/Travel/ (sfw)
Comments
I have sub galleries which now due to other things I've had to change have a wider cell size for the thumbnailed images than the images themselves. The images are 267x100 and I can't find any place to change this. There are settings in gallery.php and search.php for 267x100 which I changed. This changed the size of the thumbs on the main page but not in subfolders.
Can anyone tell me how to change this?
Here is the site:
http://markwiles.com (contains some nsfw material)
And here is an example of a gallery where the issue occurs:
http://markwiles.com/Travel/ (sfw)
`
<?php if (!defined('WEBPATH')) die();
setOption('image_size','500',false);
setOption('image_use_side','longest',false);
setOption('thumb_size','75',false);
setOption('thumb_crop','1',false);
setOption('thumb_crop_width','75',false);
setOption('thumb_crop_height','75',false);
?>
`
e.g. in my case I was ok with 500 pixel size for images on album pages, but wanted a larger image on the image pages so I changed the 500 to 640, e.g.
As to changing album thumbsize, I think you'll have to edit the album.php file. E.g. change the following line to your preferred dimensions.
`
<?php echo getBareAlbumTitle();?>">
<?php printCustomAlbumThumbImage
(getBareAlbumTitle(),NULL,267,192,267,194); ?>
`
If you change the width from original 267 which I didn't, you'll also have to go to the screen.css file and change the block size (add 6 pixels to your image's size):
`
div#album-wrap ul li{width:273px;display:block;float:left;
margin:10px 20px 10px 0;
padding:0;list-style-type:none;
background:none;}
`
Hope this steers you in right direction.
I was able to change the settings in header.php before making my first post but it's all the changes that occurred as a result of that which I am having problems with.
I had to widen the entire page
This caused the album thumbs to be shifted to the right instead of centered. Though centering them would have been a simpler fix, I prefer them larger.
So, I increased the size of the album thumbs but it appears to have only been effective on the main page.