Revolved101 wrote:Is there a way I can the table to a editor button basically a button a the staff clicks on it and it automatically displays the table for the moderator or admin?
If you are asking about css code, then there is the result:
- Code:
/* Mod tools */
.sceditor-button-modcolor div { background-image:url(your-url-here) !important }
.sceditor-button-presets div { background-image:url(your-url-here) !important }
If you are asking about javascript stuff, then you need to add this stuff:
- Code:
$('.sceditor-group:last').after('<div class="sceditor-group" id="sceditor-modtools"><a class="sceditor-button sceditor-button-modcolor modtool" title="Your text here"><div style="background:url(your-url-here) no-repeat center;"></div></a><a class="sceditor-button sceditor-button-modcan modtool" title="your text here"><div style="background:url(your-url-here) no-repeat center;"></div></a></div>');