Answers: Headshot Images Shrinking to Tiny Size with Small Breakpoint

Hey Team!

I am seeing some width issues for my client’s Answers experience that have become pertinent because their iFrame width is pretty small. Basically, the images shrink down to tiny sizes to accomodate the width, and creates a strange user experience.

Is there CSS I can implement to fix this? Any help would be much appreciated!

Hi Jessie,

Thanks for reaching out. Our engineering team is looking into this issue and we’ll circle back once we have a resolution for you.

Best,
Alyssa

Hey @jyorke,

One option is to hide the image for small screen sizes.
Add the following code to your answers.scss file

@media (max-width: 575px) {
        .[card name]-imgWrapper {
            display: none;
        }
    }

Best,
Max