Display text colour, alignment and font size etc. need to apply in content in front end.You need to configure menu bar false in tinymce initialization.
Tinymce editor applied in textarea and if menu is added in textarea using tinymce editor then UI not coming properly in front end and facing the issue of design of the page and for solving alignment of page issues want to remove top menu toolbar option from tinymce editor.
Before removing menu in tinymce editor screenshorts is below
Removing toolbar in the tinymce script you need add menubar:false and for statusbar remove you need to add statusbar:false for removing menu and statusbar of tinymce editor.
After removing the top menu option in tinymce editor screenshorts is below
Following tinymce editor script for removing main top menu options in configuration.
Tinymce editor applied in textarea and if menu is added in textarea using tinymce editor then UI not coming properly in front end and facing the issue of design of the page and for solving alignment of page issues want to remove top menu toolbar option from tinymce editor.
Before removing menu in tinymce editor screenshorts is below
Removing toolbar in the tinymce script you need add menubar:false and for statusbar remove you need to add statusbar:false for removing menu and statusbar of tinymce editor.
After removing the top menu option in tinymce editor screenshorts is below
Following tinymce editor script for removing main top menu options in configuration.
tinymce.init({ selector: "textarea", menubar : false, statusbar:false, plugins: [ "advlist autolink lists link image charmap print preview anchor", "searchreplace visualblocks code fullscreen", "insertdatetime media table contextmenu paste" ], toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image" });
0 comments:
Post a Comment