You will need to edit the global.css for flatone theme. Always edit a non public copy of the theme first before publishing live. Please try the first one then see what has changed. If font is still too small for some areas check out the other possible changes.
How to change "overall" font size of forum text
Change:
To:
How to change font size of category title links
Change the following:
To:
How to change font size of sub category title links + top menu links
Change the following:
To:
How to change font size of forum description on forum index
Change the following:
To:
How to change font size of thread title inside thread
Change:
To:
How to change "overall" font size of forum text
Change:
Code:
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, li, form, button, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
background: transparent none repeat scroll 0% 0%;
border: medium none;
font-size: 100%;
margin: 0px;
outline: 0px none;
padding: 0px;
vertical-align: baseline;
}
To:
Code:
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, li, form, button, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
background: transparent none repeat scroll 0% 0%;
border: medium none;
font-size: 105%;
margin: 0px;
outline: 0px none;
padding: 0px;
vertical-align: baseline;
}
How to change font size of category title links
Change the following:
Code:
.thead a {
color: #F5F5F5;
}
To:
Code:
.thead a {
color: #F5F5F5;
font-size: 120%;
}
How to change font size of sub category title links + top menu links
Change the following:
Code:
a:link, a:visited {
color: #505050;
text-decoration: none;
}
To:
Code:
a:link, a:visited {
color: #505050;
text-decoration: none;
font-size: 120%;
}
How to change font size of forum description on forum index
Change the following:
Code:
.smalltext {
font-size: 11px;
}
To:
Code:
.smalltext {
font-size: 14px;
}
How to change font size of thread title inside thread
Change:
Code:
.largetext {
font-size: 16px;
}
To:
Code:
.largetext {
font-size: 18px;
}