MyBB Community Forums

Full Version: make the font size bigger of times new roman without picking the size
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to make the font size bigger of times new roman without picking the size

i dont want to be showed like that is small :
[Image: smallletters.png]
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

.trow1 {
	background: #dcdcdc url(../../../images/blueshire/style/trow_bg.png) top repeat-x;
        padding: 6px;
	border: 1px solid #ccc;
}

.trow2 {
	background: #dcdcdc url(../../../images/blueshire/style/trow_bg.png) top repeat-x;
        padding: 6px;
	border: 1px solid #ccc;
}

3. Replace with:

.trow1 {
	background: #dcdcdc url(images/blueshire/style/trow_bg.png) top repeat-x;
        padding: 6px;
	border: 1px solid #ccc;
	font-size: 15px;
}

.trow2 {
	background: #dcdcdc url(images/blueshire/style/trow_bg.png) top repeat-x;
        padding: 6px;
	border: 1px solid #ccc;
	font-size: 15px;
}

4. Change 15px to a size that you like.