I am trying to set the border radius for the TinyMCE editor that I am using in my project. I've researched this a couple of times and can't seem to find an answer that works. I found a similar question here, but it doesn't seem to work...Adding border-radius to TinyMCE textarea
In my code, I have a TinyMCE directory with a Custom JS file, and it is using the parameters as I would expect...similar to...
tinymce.init({
selector: 'textarea.tinymce',
height: 300,
width: '80%',
});
But I can't figure out how to incorporate a border-radius so that the entire editor has rounded corners. I've tried to set CSS around the editor but that doesn't seem to work either. I've got a great handle on border-radius, but for some reason it appears that TinyMCE requires some kind of special trick to get it to work.
Thanks in advance for any thoughts on this.