Quote:
Originally Posted by GrCh_Jeff
I found this:
Code:
<td class="alt1" align="center">
<textarea name="notepad" rows="7" cols="45">{$vbulletin->userinfo['notepad']}</textarea>
<input type="hidden" name="do" value="savenotepad" /></td>
And changed it to this:
Code:
<textarea name="notepad" rows="12" cols="80">{$vbulletin->userinfo['notepad']}</textarea>
Here is a screenshot and no the forum width isn't messed up :
|
Interesting. It doesn't stretch the table cell around it at all, you say?
Hmm, never knew that. *mental note*
Stop, you can add a description if you want just above the textarea or something. Try something like finding
Code:
<textarea name="notepad" rows="7" cols="45">{$vbulletin->userinfo['notepad']}</textarea>
in the template and adding above it something in the direction of
Code:
<div class="smallfont">Your personal notepad can store anything you can think of: notes, memos, half-finished posts, image URLs, quotes you like... Just type it in, save, and access it again here anytime you want.</div>
That's just a description made-up on the spot, so by all means edit it (if you have a board in multiple languages, by all means phrase it too), but that's all you'd have to do. Might add it as a hack feature, but this will have to do for now.