MyBB Community Forums

Full Version: How to change the post or reply subject/title style
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Dear Sir,

I think the subject/title style is too small on the text
Could you tell me hot to change the subject/title as below style:


Subject or RE. Subject


font size=large
font color=red
align=center

Regards!

SEP. 12,2008
Someone know how to do this?
You have to do 2 changes:

a) Change the original text for the "Subject or RE. Subject" in:
inc/languages/english/newreply.lang.php
Change:
$l['post_subject'] = "Post Subject:";

inc/languages/english/newthread.lang.php
Change:
$l['thread_subject'] = "Thread Subject";

b) Change the template to the color, font size & align you want:
ACP > Modify / Delete Templates > Your Template > Expand > New Reply Templates > newreply > EDIT
Change:
Modifiy the HTML of the line where is $lang->post_subject to whatever you want

ACP > Modify / Delete Templates > Your Template > Expand > New Thread Templates > newthread > EDIT
Change:
Modifiy the HTML of the line where is $lang->thread_subject to whatever you want

That's it.
Dear NoRules,

Thanks your inform and sorry I let you have a mistake.

I want to have a style as attached of subject_mystyle.jpg, not a standard style as attached of subject_standard.jpg

-----------standard style ----------
[attachment=11040]

-----------I want to have this style ----------
[attachment=11039]
Ah! Ok!

Forget what I said on last post Smile

ACP > Modify / Delete Templates > Your Template > Expand > Show Thread Templates > showthread > EDIT
Change:
Modifiy the HTML of the line where is $thread[subject] to whatever you want

Now it must work Wink
Dear NoRules,

Thanks your kindness.

I do it as below:

ACP > Modify / Delete Templates > Default > Expand > Post Bit Templates > Expand > Postbit > Edit > <div align=center><font size=5 color=red><b>{post['subject']}</B></font></div>


Good Luck!