Hi, thanks for support!
Please I need some quick CSS to display Title in top of the big preview picture in magazine element, not in bottom as default.
Hey Martin!
Thank you for using Enfold.
Try to use this at the very bottom of functions.php:
function add_custom_script2(){
?>
<script>
jQuery(window).load(function(){
jQuery(".av-magazine-entry-big .av-magazine-thumbnail").before(jQuery(".av-magazine-entry-big .av-magazine-title"));
});
</script>
<?php
}
add_action('wp_head', 'add_custom_script2', 10);
Regards,
Ismael
Thanks for your help. One last thing: How can I align center the Title of each element?
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-magazine-title.entry-title {
text-align: center;
}
Regards,
Yigit
Thanks, this topic can be closed!