Can I centre align the JPG under a slider testimonial, with a suitable quick css line?
Thanks !
Hey evtilsley!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.avia-slider-testimonials .avia-testimonial-meta { margin-left: 47%; }
You may need to adjust the value to center it perfectly
Best regards,
Yigit
That certainly alters the position, but seems inconsistent on different device sizes where it drifts off centre. Is there a way to force it to the centre for all platforms?
Thanks !
Hi!
You can use media queries as following to target different screen sizes
@media only screen and (max-width: 990px) {
.avia-slider-testimonials .avia-testimonial-meta { margin-left: 25%; }}
@media only screen and (max-width: 767px) {
.avia-slider-testimonials .avia-testimonial-meta { margin-left: 20%; }}
@media only screen and (max-width: 480px) {
.avia-slider-testimonials .avia-testimonial-meta { margin-left: 15%; }}
Again, you may need to adjust the values to center it perfectly
Cheers!
Yigit