Quote:
Originally Posted by induslady
Hello,
Would want to have the Smilie Box popup window dimensions to be increased so that there are no horizontal / vertical scroll bars and the users are able to see all the smilie options in the box.
PFA screen shot of the smilie box popup window marked in red box which I would want to adjust the dimension of.
Attachment 146501
Thanks in advance for the response.
|
I just worked this up, maybe it will help you
Hack: Set the minimum height and width of the Ckeditor plugin smiliebox
Edit:
Use a good editor (Do not use Notepad or Wordpad or something similar.
You can use the vbulletin uncompressed source or just edit the compressed since it is just a few parameter
changes.
Edit in vbulletin file area:
"/clientscript/ckeplugins/vbsmiley/dialogs/smiley.js"
Search for "270," <-- Do not include the quotes
The code you are searching for is the following.
Code:
minWidth : 270,
minHeight : 120,
Change this to the minimum width of your desired popup box.
WARNING: This should be less than the smallest device resolution you support.
Examples:
minWidth : 450,
minHeight : 290,
minWidth : 610,
minHeight : 450,
It is your environment so experiment.
Save and Recompress:
For final production version always recompress.
YUI compressor is easy to use and does a good job most of the time.