Hello,
Yes, you are right.
Also you can activate Display only first image option (you can find it on the Main tab->Gallery Type section). After saving changes – add galleries shortcode to your page.
If you want to display the galleries in one line, please follow next steps:
- Go to the Appearance menu at WordPress Dashboard and open Editor
- In the right list find footer.php and open it
- In this window before string
<?php wp_footer(); ?>
you need to enter the code below:
<script>
(function($) {
$('.grid-gallery.one-photo').each(function() {
var $this = $(this);
$this.css({
display: 'inline-block',
width: $this.data('width') + 'px',
margin: $this.data('offset') / 2 + 'px'
})
}).wrapAll($('<div>').css('text-align', 'center'));
})(jQuery);
</script>
Don’t forget to save your changes by clicking on “Update File”.