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

    http://shelliv.bydecosta.com/press/

    How can we change the layout on the testimonials.

    We want each “Testimonial / Press” to start with “Title” instead of being on the bottom before “Read More” and for it to be in larger font.
    The image needs to be bigger on the left.

    Thanks,
    MP

    #273949

    Hey kpundyk!

    Please add following code to Functions.php in Appearance > Editor

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

    then add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia-testimonial-name { font-size: 18px; }
    .avia-testimonial-image {
    width: 100px;
    height: 100px; }

    then go to Settings > Media and increase thumbnail size to 100px ( or any other value, you should adjust the value in css code if you would like to use another value ) and regenerate thumbnails using – http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #275454

    Thanks for your help,

    MP

    #275659

    Hi!

    You are welcome, glad we could help!

    Regards,
    Yigit

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