Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #287747

    Hi guys,

    how do i make the name & title appear first in testimonial?
    </img>

    thanks
    felix

    #287843

    Hey foking!

    Thank you for visiting the support forum!

    Please add this on Quick CSS or custom.css:

    div.avia-testimonial-meta {
    margin: 0;
    }
    
    div.avia-testimonial-image {
    float: right;
    }

    Cheers!
    Ismael

    #287844

    Hi Ismael,

    Hmm.. thats really not what I want.
    I want the field “Name” and “Subtitle below name” to be on top instead of below the”Quote”

    Felix

    #287884

    Hi!

    Please try adding following code to Functions.php file in Appearance > Editor

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    	   jQuery(".avia-testimonial-meta-mini").prependTo(".avia-testimonial-content");
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Yigit

    #287892
    This reply has been marked as private.
    #288477

    Hey!

    Can you post the link to your website please?

    Best regards,
    Yigit

    #288517
    This reply has been marked as private.
    #288903

    Hi!

    Thank’s for coming back.

    I added the following code in functions.php at the end:

    
    function add_custom_script(){
    ?>
    <script>
    jQuery(function() {
    	jQuery(".avia-testimonial-meta-mini").each(function(){
    		jQuery(this).closest('.avia-testimonial_inner').prepend(jQuery(this));
    	});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    It moved the names up to the top.

    Regards,
    Günter

    #289077

    Cool many thanks so much.

    I just need to move it slightly to the right. I guess that can be easily fixed using CSS

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Testimonial Layout’ is closed to new replies.