MyBB Community Forums

Full Version: How to use a bigger font for forum name / category name?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello:

How to use a bigger font for forum name / category name? Thanks for the answer!

Frank
Add font-size: 13px;  on these below, change the 13 to what size you want.

Themes > Default > Global.css


.thead {
background: #0066a2 url(images/thead.png) top left repeat-x;
color: #ffffff;
border-bottom: 1px solid #263c30;
padding: 8px;
       font-size: 13px;
}

.thead a:link {
color: #ffffff;
text-decoration: none;
       font-size: 13px;
}

.thead a:visited {
color: #ffffff;
text-decoration: none;        
      font-size: 13px;
}

.thead a:hover,
.thead a:active {
color: #ffffff;
text-decoration: underline;
      font-size: 13px;
}

Exactly what iAndrew said, just change the value of font-size in the above code depending on whatever value you have.
(2016-04-30, 01:33 AM)iAndrew Wrote: [ -> ]Add font-size: 13px;  on these below, change the 13 to what size you want.

Themes > Default > Global.css


.thead {
background: #0066a2 url(images/thead.png) top left repeat-x;
color: #ffffff;
border-bottom: 1px solid #263c30;
padding: 8px;
       font-size: 13px;
}

.thead a:link {
color: #ffffff;
text-decoration: none;
       font-size: 13px;
}

.thead a:visited {
color: #ffffff;
text-decoration: none;        
      font-size: 13px;
}

.thead a:hover,
.thead a:active {
color: #ffffff;
text-decoration: underline;
      font-size: 13px;
}


Thanks a lot for the answer!