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?
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
Thank you for this. It worked wonderfully
Consider ticket closed.
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