BBCode [CODE] like IPB

Alvaro_SG

New Member
Open your bbcode_code template and replace all with this:

PHP:
<style>
.codetop{
	background: #FDDBCC url(http://i40.tinypic.com/2hmcwih.jpg) no-repeat right;
	color: #000;
	font-weight: bold;
	margin: 0 auto 0 auto;
	padding: 3px;
}

.codemain{
	background: #FAFCFE;
	border: 1px dotted #000;
	color: #465584;
	font-family: Courier, "Courier New", Verdana, Arial;
	margin: 0 auto 0 auto;
	padding: 2px;
</style>

<div style="margin:20px; margin-top:5px">
<div class='codetop'>$vbphrase[code]:</div><div class='codemain'><pre style="
		margin: 0px;
		padding: $stylevar[cellpadding]px;
		width: $stylevar[codeblockwidth];
		height: {$blockheight}px;
		text-align: left;
		overflow: auto">$code</pre></div></div>

Demo: http://www.freakwarez.net/post6.fw
 
Code:
its default ones. [code]<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">$vbphrase[code]:</div>
	<pre class="alt2" dir="ltr" style="
		margin: 0px;
		padding: $stylevar[cellpadding]px;
		border: 1px inset;
		width: $stylevar[codeblockwidth];
		height: {$blockheight}px;
		text-align: left;
		overflow: auto">$code</pre>
</div>
[/code]
 
Back
Top