CSS doesn't work in Preview

  • Issue description:
    I use this CSS code to add a border around Blog Popup
div[class*="eapps-blog"] div[class*="popup__Content"] {
    border: 5px solid #f1f;
}

However I found it doesn’t work in Edit Mode, and even when saving and checking on the page (on my test site) where I added widget, the code still doesn’t run.

I checked in Chrome Dev Tool and the code seems correct.

1 Like

Hi there, @tuanphan :wave:

Please try to use this code instead:

[class*="popup__Content"] {
    border: 5px solid #f1f;
}

Thank you @Max

1 Like