How to modify testimonial text options in Prestige theme?

I am trying to have multiple testimonial slides like this in my Prestige theme. I am trying to have the “PLATINUM SPONSORS” part be a larger font, and then have a space between the list of names. Then, for the “For a complete list of sponsors, please click here”, I would like to have it be a smaller font than the names and have a space above it.

I am not sure this is possible, but would love to know either way and if you can help!! Thank you so much!!

hi @beannie

can you please shear your store URL and password i have suggested a better solution

Hi @shubhamSharma - yes it is artgallery.devonhorseshow.net and password is jeannedevon

THANK YOU so much!

Hi.. @beannie

step 01:

  1. Go to your Store > Theme > click to edit code.
  2. find this file "theme.css " and open.

step 02:

  1. Paste the code at the end of the file.
.Testimonial__Content P:nth-child(2) {
    font-size: 40px;
}
.Testimonial__Content p:last-child {
    font-size: 14px;
    margin-top: 1rem !important;
}

this idea helps you

Hi @shubhamSharma - Thank you - so the last line worked, but the larger font one did not. Any other ideas? Thank you

@shubhamSharma Hello again - your code worked but I changed the first part to nth-of-type(2) and then that worked. Thank you so much for your help!