Hi Stephanie,
I see that you added it twice but you miss the closing bracket }
on both instances, and there is an extra line at the bottom please remove that.
Update this last block of your custom CSS
/*image and card fix on IE*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.x-face-graphic img,
.x-image img {
width: 100% !important;
}
/*image and card fix on IE*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.x-face-graphic img,
.x-image img {
width: 100% !important;
}
/*////////////////////*/
To just this:
/*image and card fix on IE*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.x-face-graphic img,
.x-image img {
width: 100% !important;
}
}
Let us know how it goes,
Cheers!