How to increase the subject bar size??? [phpBB3 Tutor]

Post your own Mods, Snippets,
Tutorials here. Share what you got
Forum rules
User contributions are the users own "Stuff"
They are not supported by the BBCode Staff and is used at own risk

How to increase the subject bar size??? [phpBB3 Tutor]

Post by bkr3 »

Now, I'd like to share the simple tweak which was found out by me recently... :)

GO TO

styles/yourstyle/template/posting_editor.html

Find out :

Code: Select all

<dl style="clear: left;">
      <dt><label for="subject">{L_SUBJECT}:</label></dt>
      <dd><input type="text" name="subject" id="subject" size="45" maxlength="<!-- IF S_NEW_MESSAGE -->[color=#FF0000]60[/color]<!-- ELSE -->64<!-- ENDIF -->" tabindex="2" value="{SUBJECT}{DRAFT_SUBJECT}" class="inputbox autowidth" /></dd>
   </dl>
replace in the value 60 by how many characters do you want to have in the subject bar size???

i hope all must be enjoy this tweak :thumb:
Last edited by Steve on 02 Sep 2010, 15:58, edited 1 time in total.
Reason: added code tags

Re: How to increase the subject bar size??? [phpBB3 Tutor]

Post by bkr3 »

for e.g, if you need 1000 , replace 60 by 1000

Re: How to increase the subject bar size??? [phpBB3 Tutor]

Post by Steve »

that want work alone you also need to edit the includes/functions_posting.php and run an sql querey as posted
here : http://www.phpbb.com/community/viewtopi ... 5#p4065205