Viewing 2 replies - 1 through 2 (of 2 total)
  • I solved it with this jQuery.

    jQuery(document).ready(function(e) {
    	jQuery('.wp-tiles-byline-wrapper').each(function(e){
    		var h = jQuery(this).height();
    		var h2 = jQuery(this).parentsUntil(jQuery('.wp-tiles-tile')).parent().height();
    		console.log(h2);
    		jQuery(this).css('margin-top', (h2-h)/2+'px')
    	})
    });
    Thread Starter kizzab

    (@kizzab)

    Thanks so much for the reply can i just ask which file do i need to put this into?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Vertical Alignment of text in Tiles’ is closed to new replies.