Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #739679

    On the grid style blog page directly under each image is the category, followed by the title, then under that is the date. Is it possible to put the title directly under the image, followed by the the categories and date?

    #741060

    Hi cagraphicdesign!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    // change title position
    function ava_custom_script() {
    ?>
    	<script type="text/javascript">
    	(function($) {
    		function a() {
    			$('.slide-entry').each(function() {
    				var title = $(this).find('.slide-entry-title'),
    					image = $(this).find('.slide-image');
    
    				$(title).insertAfter(image);
    			});
    
    			}
    
    			a();
    	})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script');

    Cheers!
    Ismael

    #744013

    Thank you for this. It worked wonderfully
    Consider ticket closed.

    #744124

    Hey!

    Thanks a lot for letting us know!
    Please remember to also rate enfold, we really appreciate your help!

    Let us know if we can do anything else.

    Cheers!
    Basilis

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Grid style blog page -move title above categories’ is closed to new replies.