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
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
Thanks for your help,
MP