Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #320686

    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.

    #320946

    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

    #323240

    Thanks for your help. One last thing: How can I align center the Title of each element?

    #323244

    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

    #323267

    Thanks, this topic can be closed!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Magazine element title position’ is closed to new replies.