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;
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;
Hi there, @Nic_CHEUNG
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