I am using the latest Emojione Area in my project. My textarea
is something like this :
<textarea id="emojionearea" style="display:none"></textarea>
I am using the latest jQuery v3.4.1 min library. My code is something like this:
$("#emojionearea").emojioneArea();
But my problem arises here. I can't change the styles of the textarea
any more. I tried some CSS even with !important
to overwrite the default styles bit nothing happens. I want the following CSS:
#emojionearea {
width: 100vw!important;
position: fixed!important;
bottom: 0!important;
}
So, is there any way? Thanks in advance.