Email module rounded corners not applying

I cant for the life of me figure out what im doing wrong here. All the usual CSS (like padding) works but when I try “border-radius” it does nothing. Help me Hubspot Community, you’re my only hope.

Hi @joneickman,

Have you tried adding an !important tag to your border radius CSS declaration? In this case there are likely other CSS rules that are overriding the one you are trying to set in the module. Using an !important tag will make sure to overcome this.

Here is how it would look:

border-radius: 25px!important;

Please let me know if this helps.

Rami

Actually I solved this earlier today so I cant speak to whether an important tag would work or not. In this case, using the built in border color and width was stopping the other CSS from being implemented. I just had to do the entire border in CSS to make it work instead of relying on built in feature.