MyBB Community Forums

Full Version: Change font in code tag
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I change the font used within the code tag?
Is this possible?

Thanks.
Go to: ACP > Themes > Your theme > global.css > Edit in Advanced Mode > and find:
.codeblock {
	background: #fff;
	border: 1px solid #ccc;
	padding: 4px;
}
and Change it to;
.codeblock {
	background: #fff;
color: #FF000;
	border: 1px solid #ccc;
	padding: 4px;
}

Edit colors code of color property.
Thanks Yaldaram. You pointed me to the right direction.
I can edit the font with simple mode.
Solved!Smile
Thanks.