CSS to remove shadow and adding outline doesn't work

Help me pls,
Why it is not work in my website, when I wrote this css below here:

box-shadow: none !important;
border: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 120 px;

2 Likes

Hi there, @Nic_CHEUNG :waving_hand:

To make this code work, you should add the class of the targeted element. Here is the full code:

.global-styles, [class^='FloatingBackground__Container'] {
box-shadow: none !important;
border: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 10 px;
}

Check it out and let me know if it worked :wink:

1 Like