SSISCANFeb 27, 2021
Hi
How would I make this page https://theme-v5.cba.rocks/wysiwyg.html mobile friendly (Responsive)
Regards
Barry
1 reply · opened Feb 27, 2021
Hi
How would I make this page https://theme-v5.cba.rocks/wysiwyg.html mobile friendly (Responsive)
Regards
Barry
Hello,
Simply use the following code at the bottom of the page replacing the old codes:
<script>
jQuery(document).ready( function(){
tinymce.init({
selector: '#wysiwyg-editor',
height: '400',
setup: function(editor) {
editor.on('change', function(e) {
editor.save();
});
}
});
})
</script>This will make the Height of the Editor to 400px, so that it is properly accessible on Mobile Devices.
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.
Have the same question, or something new?
Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.
Reply on the dashboard