Hi,
can you please tell me how we can remove the border, padding and margin for the richtexteditor component?
i want to remove the 2 circle border and the margin between them
with the style code below, i manage to remove only 1 border, but i still have the main border and the margin
any idea of how i can remove it?
i have try this
.e-rte-container
{
padding: 0px !important;
margin: 0px !important;
border:none;
}
.e-richtexteditor-container {
padding: 0px !important;
margin: 0px !important;
border: none;
}
.e-richtexteditor .e-rte-content .e-content {
padding: 0px !important;
margin: 0px !important;
border: none;
}
thank you for your help