version 7.1 chat box width

I can easily change the height on the chat box in the flash apps area, but it keeps the width the same. Can the width be edited?

Quote · 11 May 2016

Try to have a look in flash/modules/chat/inc/constants.inc.php file:

$aModules = array(
    'admin' => array(
        'caption' => 'Ray Chat Admin',
        'parameters' => array('nick', 'password'),
        'js' => array(),
        'inline' => false,
        'vResizable' => true,
        'hResizable' => true,
        'reloadable' => true,
        'layout' => array('top' => 0, 'left' => 0, 'width' => 800, 'height' => 600),
                                'minSize' => array('width' => 700, 'height' => 600),
        'div' => array()
    ),
    'user' => array(
        'caption' => 'Ray Chat',
        'parameters' => array('id', 'password'),
        'js' => array(),
        'inline' => true,
        'vResizable' => false,
        'hResizable' => false,
        'reloadable' => true,
        'layout' => array('top' => 0, 'left' => 0, 'width' => "100%", 'height' => 600),
                                'minSize' => array('width' => 700, 'height' => 600),
        'div' => array(),
    )
);
Rules → http://www.boonex.com/terms
Quote · 14 May 2016
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.