MyBB Community Forums

Full Version: i want like this type of codes on my forum??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hello

before i have like this type code in my forum
[Image: 46689492320712902743.jpg]

but i want to make that like this
[Image: 37773466754315541880.jpg]

please anybody help me how i can do that pls you can see whats diffrent of both pls help me

In gobal.css change these entries:
.codeblock {

}

.codeblock .title {
	font-size: 11px;
}

.codeblock .body {
	padding: 4px;
	background-color: white;
	border-bottom: 2px solid black;
	border-right: 2px solid black;
	border-top: 2px solid gray;
	border-left: 2px solid gray;
}
pls tell me step by step bro
ACP > Themes > Your theme > Edit > global.css > and find the three instances of .codeblock style and replace it with the above.
In ACP > Templates & Style > Themes > click your theme > global.css > Advanced Mode.

Search for : .codeblock and change it to:
.codeblock {

}

Search for: codeblock .title and change it to:
.codeblock .title {
    font-size: 11px;
}

Below that add this:
.codeblock .body {
    padding: 4px;
    background-color: white;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    border-top: 2px solid gray;
    border-left: 2px solid gray;
}
there is three otions

.codeblock replace with what?

.codeblock .title replace with what?

.codeblock code replace with what?


pls tell me
(2011-06-03, 07:58 PM)crook Wrote: [ -> ]there is three otions

.codeblock replace with what?

.codeblock .title replace with what?

.codeblock code replace with what?


pls tell me

Replace all those 3 .codeblock s with this;
Quote:.codeblock {

}

.codeblock .title {
font-size: 11px;
}

.codeblock .body {
padding: 4px;
background-color: white;
border-bottom: 2px solid black;
border-right: 2px solid black;
border-top: 2px solid gray;
border-left: 2px solid gray;
}
The .codeblock .body should be added, I change my previous post.
its not working
(2011-06-03, 08:01 PM)Aries-Belgium Wrote: [ -> ]The .codeblock .body should be added, I change my previous post.

there is no .codeblock .body???
PM me your ACP logins if you wish then I can do it for you.
Pages: 1 2