I tried modifying the exact code mentioned in the CSS file as well as the functions.php file to adjust from 600 to (in my case) 1280px.
There is something that’s overriding the image over and over again and I cannot figure it out!
For a portfolio site, high res images are a must. 600px is just way too small. Facebook does an amazing job at scaling their images correctly when you optimize for 2048 on the long edge.
I’d totally upgrade to pro but not being able to effectively increase the size of the lightbox viewer is a real drawback and I don’t see any threads addressing the issue in full.
Again, changing either of these did not make a difference when viewing via lightbox. And yes, I regenerated the thumbs. In fact, I nuked all the images and re-uploaded them again via Media Manager and it looks like the theme tells wordpress to create a corresponding thumb for whatever you dictate in the style.css and/or functions.php file. i.e. if I edited to create thumbs 960×960, it would not only create the thumbs dictated in the Media settings panel (3 size) but it will include a 4th thumbnail of 960×960 which is coming at request of the Gridsby theme.
//style.css
div.lightbox-content {
margin: 0 auto;
max-width: 1280px;
width: 100%;
}
//functions.php
add_theme_support( 'post-thumbnails' );
add_image_size( 'gridsby-gallery-thumb', 450 );
add_image_size( 'gridsby-gallery-full', 1280 );