MyBB Community Forums

Full Version: Change Size of Popup For "Get More" Smiley Link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You know the link under the smileys where you can click and it pops up. How do I adjust the size to make it popup a little wider
and a little longer?? Be specific as possible pleassse.

Thank You!!
ACP > Template & Style > Templates > **expand template set** > Miscellaneous Templates > misc_smilies_popup

Try adding width="X" and height="X" at the end of the table tag, after class="tborder" and edit the X to the values you want.
Okay tried...but I see no change.
(2008-11-06, 11:59 PM)Thatonemom Wrote: [ -> ]Okay tried...but I see no change.
That's because the code you changed has no bearing on the size of the window Toungue

Find this code in jscripts/editor.js:
        openGetMoreSmilies: function(editor)
        {
                MyBB.popupWindow('misc.php?action=smilies&popup=true&editor='+editor, 'sminsert', 240, 280);
        },


Edit the last two numbers. They are the width and height respectively.
Damn, I looked in there and didn't see that Toungue