When I put a summernote inside the CSS bootstrap class wells
, the background color of summernote turns into grey as expected. But how do I keep the background color of summernote its default which is white.
<div class="well well-sm">
<div class="form-group">
<div id="summernote"></div>
</div>
</div>
Is straight CSS not working?
#summernote{
background-color: #ffffff;
}
Worst case, you could slap an !important
on the background-color rule.