The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
A way to move the "Increase Size" and "Decrease Size" links above text-boxes in ACP
Someone asked on vBulletin.com how to do this and I thought it actually comes in pretty handy when coding setting options and such.
It is unfortunately a manual file edit. Open the file: /includes/adminfunctions.php Find: Code:
print_label_row( $title . $openwindowbutton, "<div id=\"ctrl_$name\"><textarea name=\"$name\" id=\"{$vbulletin->textarea_id}\"" . iif($textareaclass, " class=\"$textareaclass\"") . " rows=\"$rows\" cols=\"$cols\" wrap=\"virtual\" dir=\"$direction\" tabindex=\"1\"" . iif($vbulletin->debug, " title=\"name="$name"\"") . ">" . iif($htmlise, htmlspecialchars_uni($value), $value) . "</textarea>$resizer</div>", '', 'top', $name ); Code:
print_label_row( $title . $openwindowbutton, "<div id=\"ctrl_$name\">$resizer<textarea name=\"$name\" id=\"{$vbulletin->textarea_id}\"" . iif($textareaclass, " class=\"$textareaclass\"") . " rows=\"$rows\" cols=\"$cols\" wrap=\"virtual\" dir=\"$direction\" tabindex=\"1\"" . iif($vbulletin->debug, " title=\"name="$name"\"") . ">" . iif($htmlise, htmlspecialchars_uni($value), $value) . "</textarea></div>", '', 'top', $name ); |
#2
|
||||
|
||||
This should probably get added to JIRA as a feature request (or improvement)
|
#3
|
||||
|
||||
Feel free if you want to... There are so many things in there though more important, I wonder if it's even worth it. I don't think there's any consensus one way or the other- just posted this as an option for those who want to do it.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|