Tagged: testimonials
I read through many tickets and thought this was the most useful: https://kriesi.at/support/topic/change-the-position-of-image-in-testimonial/#post-563372
However, after implementing this I can’t see the logo, but feel like it’s there somewhere, perhaps out of frame? Hoping some quick CSS will bring it into view…
Thank you!
Hey lzevon,
You have following code in Quick CSS
.page-id-28 .avia-testimonial-image, .avia-testimonial-image img {
display: none;
}
Please change it to following one
.page-id-28 .avia-testimonial-image, .avia-testimonial-image img {
position: absolute;
}
Best regards,
Yigit
Thanks, I did that to hide it until I could figure it out. I have that in place now with the other markup I needed to get the desired effect – thank you!