Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #396064

    Aloha,

    We are trying to be a bit too creative, perhaps – but I have used the testimonial to get the circular photo and special effect on this page: http://bestteampractices.com/home/.

    Wondering how we can center that on the page?

    Also – how can we make the bullet points the same font size?

    Mahalo!
    Drew

    #396185

    Hi HiDrew!

    Add this to a codeblock element in your page.

    <style type = "text/css">
    .avia-testimonial-wrapper {
    left: 50% !important;
    position: relative;
    transform: translate(-50%, 0px);
    }
    </style>

    The bullet points should be the same as the font size. Are you trying to increase the bullets but leave the font size alone? You could try adding a span inside the li and then use this CSS.

    li { font-size: 20px !important; }
    li span { font-size: 12px !important; }
    

    But you would have to surround it all with another element and target it that way so it doesn’t mess up your other areas.

    Regards,
    Elliott

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