MyBB Community Forums

Full Version: Customization help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Hello, I'm testing MyBB around, playing with it a little, exploiting it's abilities and so... Now, I would appreciate help on this matter:

Where/how to change the quote borders? They're dotted in this theme I'm using and I wan't to make them straight (a line). Also, I wan't to change user online/offline/hidden display with a graphics, currently they're default (green/grayed letters). I suppose I have to edit the theme's xml file?

Thanks, any help appreciated.
Admin CP --> Themes --> Modify / Delete --> *edit your theme* The quote box should be in the "Additional CSS" box at the bottom.

The code will look something like this:
.quote_header {
	background: #fff;
	border: 1px dashed #000;
	border-bottom: 0;
	color: #000;
	font-weight: bold;
	margin: 8px auto 0 auto;
	padding: 4px;
}

.quote_body {
	background: #fff;
	border: 1px dashed #000;
	border-top: 0;
	color: #000;
	padding: 4px;
	margin: 0 auto 8px auto;
}
(of course it will be different for the theme you're using)

Just change the border settings to "solid" instead of "dashed" or "dotted"
Thanks Dennis. I have few more: how to make a location to appear in the postbit view?

And can I somehow disable "time spent online" from appearing in the profile view?

Appreciate it.
anyone?
By deleting it from the template:

Open member_profile
Find && Remove
<tr>
<td class="trow2"><strong>{$lang->timeonline}</strong></td>
<td class="trow2">{$timeonline}</td>
</tr>
Never Wrote:how to make a location to appear in the postbit view?

Stupid question, but I've seen that word many times...
What is "postbit" ?
dvb Wrote:
Never Wrote:how to make a location to appear in the postbit view?

Stupid question, but I've seen that word many times...
What is "postbit" ?

[Wiki: Postbit] (Broken link, head over to docs.mybb.com instead)
Thanks a lot!
BTW, there is a way to translate the info in the wiki to other language? (like in wikipedia.com)
if so, did that include RTL languages like Hebrew and Arabic?
You're welcome.

I think the wiki is an English-only venture right now, because we don't have enough staff who know other languages to manage the other translations of the Wikis. However, if you would like to start a translation of the wiki in your native language, we could link to your wiki just like the other unofficial support boards.
Thanks LeX-

Now I need only one more thing:
Never Wrote:how to make a location to appear in the postbit view?

If anybody could help me out with this remaining one, I would be very, very grateful.
Pages: 1 2 3