Jaime Sanchez

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Images paged gallery lightbox #29060
    Jaime Sanchez
    Participant

    Thanks for your answer

    in reply to: Gallery thumbnails #28935
    Jaime Sanchez
    Participant

    Hello again Veena, your css worked fine, just had to make a little modification:
    I had to add .lvca-gallery-wrap .lvca-gallery before the classes, and change the filter to get what i wanted:

    .lvca-gallery-wrap .lvca-gallery .lvca-gallery-item .lvca-project-image:hover img{
    -webkit-filter: opacity(50%);
    filter: opacity(50%);
    }

    Thanks a lot for your help

    in reply to: Gallery thumbnails #28934
    Jaime Sanchez
    Participant

    Thanks a lot, i will try the code lines and post feedback.

    For the second question about the thumbnais sizes I found myself the solution:

    Open the image-sizes.php file of your theme (it should be in wp-contents/themes/your-theme/framework/config/)

    Add the thumbnails sizes you need:

    <?php defined( ‘ABSPATH’ ) OR die( ‘This script cannot be accessed directly.’ );

    /**
    * Theme’s thumbnails image sizes
    *
    * @filter us_config_image-sizes
    */

    return array(

    // 600×600 – gallery large, blog layouts
    ‘tnail-1×1’ => array(
    ‘width’ => 600,
    ‘height’ => 600,
    ‘crop’ => TRUE,
    ),
    // 350×350 – small image blog layout, gallery medium, person
    ‘tnail-1×1-small’ => array(
    ‘width’ => 350,
    ‘height’ => 350,
    ‘crop’ => TRUE,
    ),

    // 400×300 – small image landscape
    ‘tnail-4×3-small’ => array(
    ‘width’ => 400,
    ‘height’ => 300,
    ‘crop’ => TRUE,
    ),

    );

    Then install the plugin Regenerate Thumbnails, and regenerate your images thumbnails (you will find it in the tools menu).

    Now in the gallery options you should find the new thumbnails sizes.

    in reply to: Gallery customization #28919
    Jaime Sanchez
    Participant

    Sorry, i posted in the wrong place

Viewing 4 posts - 1 through 4 (of 4 total)