• I saw a thread similar to this but I didn’t want to hijack that thread. I would like to know how to change the size of the image when it’s opened up in lightbox (when clicking an image on the homepage for instance). I’d like it to be much more high-res.

    I’ve tried messing with add_image_size( ‘gridsby-gallery-full’, 600 ); in functions.php. But it doesn’t work, and I can’t find gridsby-gallery-full anywhere else either. Actually, I’m not even sure that is code I should be looking at.

    What do I do? Please help!

Viewing 12 replies - 1 through 12 (of 12 total)
  • Theme Author modernthemesnet

    (@modernthemesnet)

    Hello,

    This image size is created by the theme to prevent extreme page load times. It would take quite a bit of modification to change the size of the image inside the lightbox.

    You are correct in changing the size in the functions.php file, however there is also a CSS class on the image itself you will have to set a custom width to as well.

    To see the changes, you will have to regenerate your thumbnails.

    Be sure to make your edits with a child theme so you don’t lose them with future updates.

    Thanks!

    I did this and now the image itself is 1000 px wide (which I set it as), while it displays as 600 px wide.
    I used a plugin to regenerate my thumbnails. Am I doing this right?

    Theme Author modernthemesnet

    (@modernthemesnet)

    m4DnZ,

    It sounds like you did everything right, but you will have to change some CSS content as well.

    div.lightbox-content, .dummy-img, div.show p, .dummy-title { max-width: 1000px; }

    m4Dnz, you are doing it right. I’m executing the exact same instruction as per modernthemesnet has advised. There is something else that is overriding the image size to 600px. If you inspect the element, you’ll notice that it will most likely say the size is 1000x??? (or whatever your image size is) but it will also include an overridden size of 600x??? i.e. your thumbs are regenerated and working but the css file is doing something funny to not reflect the change.

    Took a couple days digging thru the code but I found it. Open grid.css in the css folder. Go to line 197. Change max-width to a percent or a larger px size. I used 1024 and it looks much nicer.

    bounpasith,

    Thank you so much for actually replying ?? Think the developers want to keep this a secret or something lol!

    Your change actually worked! That was the last piece to the puzzle.

    So, for everybody else, if you wish to use higher res images for lightbox, here are the steps:

    1. Modify line 53 in functions.php:

    e.g

    add_image_size( 'gridsby-gallery-full', 1280 );

    2. Modify line 1061 in style.css:

    e.g.

    div.lightbox-content {
        margin: 0 auto;
        max-width: 1280px;
        width: 90%;
    }

    3. Modify line 197 in grid.css (found in /wp-content/themes/gridsby/css)

    e.g.

    .dummy-title
    {
    	max-width: 1280px;
    	width: 100%;
    	opacity: 0;
    	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    	transition: opacity 0.5s, transform 0.5s;
    }

    THERE YOU HAVE IT. You can finally update the size and image quality. If you have existing images, you’ll have to rebuild your thumbnails as mentioned before.

    Cheers.

    Glad it worked out. Discovered this theme recently to use for my vacation website. Loved everything about except for the tiny lightbox images. Was about to give up until I found the way to change it! ??

    Like inphra mentioned. If you have existing images in the gallery, remove them and reupload them all. Otherwise the updated size won’t register.

    bounpasith,

    Quick question for you. Since we’re now able to dictate a new image size, I’m wondering how to ensure the lightbox image stays within the bounds of the browser.

    For example, if you have an image whose long edge can be a maximum of 1920 pixels large, and it happens to be a portrait orientated photo, as it stands the image will be off screen. It’s taking the short edge and stretching it to 1920 and the long edge is even further off screen.

    Would ideally should happen is the image should bound to the browser’s current height to maintain the image. Is this possible? My CSS is terrible. Been messing with max-height but it does not seem to work.

    Cheers!

    I’m good enough with CSS just to modify and only if the developer does proper commenting. My suggestion is to keep to landscape images. Crop them if you have to beforehand. Obviously the developer intended to keep this theme simply. I’m sure there is a way though but it would probably be in java code and not CSS.

    been trying to integrate this through a child theme as mentioned by modernthemesnet and with inphra’s instructions, not too sure whether i’m doing this correctly though

    have regenerated thumbnails, re-uploaded content to the media library, deleted posts and have re-done them with no change in the lightbox

    i’ve got 2 files in the child theme, style.css and functions.php, contents are as follows:
    * style.css

    /*
     Theme Name:   Gridsby Child
     Theme URI:    https://modernthemes.net/demo/gridsbywp
     Description:  Gridsby is a pinterest style gallery theme which is a simple way to showcase a beautiful photo collection. Gridsby is responsive and retina ready, and includes an easy method for posting photos to a front page gallery. You can check out the demo at https://modernthemes.net/demo/gridsbywp for a closer look.
     Author:       ModernThemes
     Author URI:   https://modernthemes.net
     Template:     gridsby
     Version:      1.1.1
     License:      GNU General Public License v2 or later
     License URI:  https://www.gnu.org/licenses/gpl-2.0.html
     Tags:         black, white, light, gray, fluid-layout, responsive-layout, one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-menu, featured-images, full-width-template, rtl-language-support, theme-options, translation-ready, photoblogging, front-page-post-form, post-formats
     Text Domain:  gridsby-child
    */
    
    /* parent style.css replacement */
    div.lightbox-content {
        margin: 0 auto;
        max-width: 1280px;
        width: 90%;
    }
    
    /* parent grid.css replacement */
    .dummy-title
    {
    	max-width: 1280px;
    	width: 100%;
    	opacity: 0;
    	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    	transition: opacity 0.5s, transform 0.5s;
    }

    *functions.php

    <?php
    add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
    function enqueue_parent_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }
    
    // gridsby gallery full 1280px
    function gridsby_setup() {
    
    	/*
    	 * Make theme available for translation.
    	 * Translations can be filed in the /languages/ directory.
    	 * If you're building a theme based on gridsby, use a find and replace
    	 * to change 'gridsby' to the name of your theme in all the template files
    	 */
    	load_theme_textdomain( 'gridsby', get_template_directory() . '/languages' );
    
    	// Add default posts and comments RSS feed links to head.
    	add_theme_support( 'automatic-feed-links' );
    
    	/*
    	 * Let WordPress manage the document title.
    	 * By adding theme support, we declare that this theme does not use a
    	 * hard-coded <title> tag in the document head, and expect WordPress to
    	 * provide it for us.
    	 */
    	add_theme_support( 'title-tag' );
    
    	/*
    	 * Enable support for Post Thumbnails on posts and pages.
    	 *
    	 * @link https://codex.www.ads-software.com/Function_Reference/add_theme_support#Post_Thumbnails
    	 */
    
    	add_theme_support( 'post-thumbnails' );
    	add_image_size( 'gridsby-gallery-thumb', 450 );
    	add_image_size( 'gridsby-gallery-full', 1280 );  // gridsby gallery size 1280px
    
    	// This theme uses wp_nav_menu() in one location.
    	register_nav_menus( array(
    		'primary' => __( 'Primary Menu', 'gridsby' ),
    	) );
    
    	/*
    	 * Switch default core markup for search form, comment form, and comments
    	 * to output valid HTML5.
    	 */
    	add_theme_support( 'html5', array(
    		'search-form', 'comment-form', 'comment-list', 'gallery', 'caption',
    	) );
    
    	// Setup the WordPress core custom background feature.
    	add_theme_support( 'custom-background', apply_filters( 'gridsby_custom_background_args', array(
    		'default-color' => 'ffffff',
    		'default-image' => '',
    	) ) );
    
    	/**
    	 * Enable support for Post Formats
    	 */
    	add_theme_support( 'post-formats', array( 'image' ) ); 
    
    }
    
    ?>

    just realised i’d forgotten the:

    if ( ! function_exists( ‘gridsby_setup’ ) ) :

    and

    endif; // gridsby_setup
    add_action( ‘after_setup_theme’, ‘gridsby_setup’ );

    in the functions.php, threw it into the child functions.php and still no luck ??

    eventually figured it out, here’s my functions.php and style.css if anyone ever needs it

    functions.php: https://pastebin.com/zM2hiYUN
    style.css: https://pastebin.com/tvqQtL57

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Post Image Size inside lightbox’ is closed to new replies.