Quote:
Originally Posted by djohn
I repeat my question again, Mystics, sorry about nagging. That thing just bugs me the whole time. I've liturally spent hours trying to find where can decrease the width of the dropdown menu in any forum. The screenshot is there: https://vborg.vbsupport.ru/attachmen...chmentid=18043
Notice how the All Categories dropdown menu is a little bit narrower than the others? Where can I adjust it?
|
You can call the function with an argument for the width.
includes/functions.php:
Code:
function fetch_thread_categories($foruminfo, $selcat = '', $empty = 1, $showall = '', $categoryarray = array(), $selectwidth = '')
So you may change forumdisplay.php:
Code:
$threadcategories = fetch_thread_categories($foruminfo, urldecode($_REQUEST['threadcategory']), 0, $vbphrase['all_categories']);
to:
Code:
$threadcategories = fetch_thread_categories($foruminfo, urldecode($_REQUEST['threadcategory']), 0, $vbphrase['all_categories'], array(), '125px');
Quote:
then whe??where does the script know, how wide is the dropdown menu going to be?
|
The menu is as wide as the longest entry needs place.