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

    Can I centre align the JPG under a slider testimonial, with a suitable quick css line?
    Thanks !

    #261276

    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

    #261283

    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 !

    #261889

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.