MyBB Community Forums

Full Version: make mybb code which will be like the quote but in different color the background?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to make mybb code which will be like the quote but in different color the background?is it possible?and if yes how?
Go to Admin CP > Configuration > MyCode > Add New MyCode.
and yea how to change the backround colour of it
?

and tell me what to add over there?
Pick your own title and description.

Regular Expression:

\[quote2\](.*?)\[/quote2\]

Replacement:

<blockquote class="quote2"><cite>Quote:</cite>$1</blockquote>

The rest can remain as it is. Then add this to your global.css:

.quote2 {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 4px;
}