Utilizing the most recent Emojione Area in my current project. The structure of my textarea
looks like this :
<textarea id="emojionearea" style="display:none"></textarea>
Employing the newest version of jQuery v3.4.1 min library. The code snippet is as follows:
$("#emojionearea").emojioneArea();
However, I'm encountering an issue at this stage. I am unable to successfully alter the styles of the textarea
. Despite attempting various CSS adjustments with !important
to override the default styles, no changes seem to take effect. The desired CSS styling is as follows:
#emojionearea {
width: 100vw!important;
position: fixed!important;
bottom: 0!important;
}
Is there a viable solution for this predicament? Appreciate any assistance provided.