• Resolved dutchpuppet

    (@dutchpuppet)


    Hello.

    First of all; nice plugin, the only one with a beautiful gallery. But however we would like to make a little change. Is it possible to adjust the spacing between the images shown? We can’t find it anywhere.The spacing is now to narrow.

    With regards
    Ingrid

    http://wordpress.org/plugins/jetpack/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    You could change the margin around the images with some custom CSS, but since the image sizes are defined via javascript, you will experience issues when trying to make these changes.

    If you want to customize the look of the Tiled Galleries, it would probably be better to completely remove Jetpack’s Tiled Gallery libraries, like so:

    function tweakjp_rm_tiledlibs(){
    	wp_dequeue_script( 'tiled-gallery' );
    	wp_dequeue_style( 'tiled-gallery' );
    }
    add_action( 'wp_footer', 'tweakjp_rm_tiledlibs' );

    You can then load your own custom css and js files instead, based on Jetpack’s ones (css / js) but with your changes.

    Im not sure how do this?… which file do I add the code to?…..

    If you want to customize the look of the Tiled Galleries, it would probably be better to completely remove Jetpack’s Tiled Gallery libraries, like so:

    function tweakjp_rm_tiledlibs(){
    wp_dequeue_script( ’tiled-gallery’ );
    wp_dequeue_style( ’tiled-gallery’ );
    }
    add_action( ‘wp_footer’, ‘tweakjp_rm_tiledlibs’ );

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    You can add that code to your theme’s functions.php file, or to a functionality plugin.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Tiled mosaic; border between pictures adjustable?’ is closed to new replies.