MyBB Community Forums

Full Version: How to add a box for text at this area
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello

I would like to have a box in the area shown below to enter some text for people to read.

This is the area i would like a box to have text in
[Image: attachment.php?aid=804]
lol but i dont know php
If you no HTML then this should be no problem!
Admin CP > Templates > Modify/Delete > *template set expand* > header

Find
<navigation>
and change to
<table width="100%"><tr><td><naviagtion></td><td>[b]Text you want here[/b]</td></tr></table>

You might need to do some adjusting to the table to get it to display properly, for eg, this might look better depending on the size of you message:
<table width="100%"><tr><td width="40%"><naviagtion></td><td width="60%">[b]Text you want here[/b]</td></tr></table>
Great, thanks K776

okay its put the text in the correct area but its got no box around it.

Here's a picture. The arrow shows the box thats missing
source Wrote:Great, thanks K776

okay its put the text in the correct area but its got no box around it.

Here's a picture. The arrow shows the box thats missing

[Image: attachment.php?aid=807]
opps. First off my last code was wrong Confused Use this
<table width="100%"><tr><td width="40%"><navigation></td><td width="60%">Text you want here</td></tr></table>
Secondly, what box are you talking about? Can you draw an eg of how you want it to look when finished?
hope this helps
ah, yep it did. Try replacing whatever code you used above, with this:
<navigation>

<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr><td class="thead" colspan="2"><strong>[b]Title here[/b]</strong></td></tr>
<tr>
<td class="trow">[b]Content here[/b]</td>
</tr>
</table><br />
Pages: 1 2