Jump to content

jbx menu 2.0 text limit


Recommended Posts

require_once dirname(__FILE__) . '/../../../config/config.inc.php';
require_once dirname(__FILE__) . '/../../../init.php';

header('Content-type: text/css; charset=utf-8;');

echo '.sf-contener, .sf-menu {width:' . Configuration::get('MENU_WIDTH') . 'px;}' . "\n";
echo '.sf-menu {line-height:' . Configuration::get('MENU_HEIGHT') . '}' . "\n";
echo '.sf-menu li:hover ul, .sf-menu li.sfHover ul {z-index:' . Configuration::get('MENU_INDEX') . ';}' . "\n";
echo '.sf-menu a {font-size:' . Configuration::get('MENU_TEXT_SIZE') . 'px}'."\n";
echo '.sf-menu span {vertical-align: ' . Configuration::get('MENU_TEXT_VERTICAL') . 'px}'."\n";
echo '.sf-menu li li, .sf-menu li li li {background:#' . Configuration::get('MENU_ITEM_COLOR') . ';}'."\n";
echo '.sf-menu ul li:hover, .sf-menu ul li.sfHover, .sf-menu ul li a:focus, .sf-menu ul li a:hover, .sf-menu ul li a:active {background:#' . Configuration::get('MENU_ITEM_HOVER_COLOR') . ';}'."\n";



here is the line 2-13 ~ where to edit ??

thank you

Link to comment
Share on other sites

The value that is being set is 13em.
Is should be in this variable: Configuration::get('MENU_WIDTH')
Which means that it is stored in your ps_configuration table or
in your superfish module configuration page in the BO.

I increased to 20em in Firebug and it worked perfect.

Link to comment
Share on other sites

×
×
  • Create New...