Posts: 8
Threads: 1
Joined: 9th Aug 15
Hello
I purchased the Flatone theme today, and it is performing well with my mybb forum, I feel the font size is too small and I need to increase the font size by one point and to change the color of the font
Please tell me the attributes I need to change in the global.css file.
regards
Bijumk
Posts: 743
Threads: 45
Joined: 5th Apr 12
(9th Aug, 08:15 pm)bijukonneckal Wrote: Hello
I purchased the Flatone theme today, and it is performing well with my mybb forum, I feel the font size is too small and I need to increase the font size by one point and to change the color of the font
Please tell me the attributes I need to change in the global.css file.
regards
Bijumk
There are numerous places that can be edited to change font size. I will put together something more formal in the next day or two. Is there a specific location you need to change immediately I can address ?
Posts: 8
Threads: 1
Joined: 9th Aug 15
Hi
Many thanks for your reply.
Please tell me the attribute I needed to increase the font size of the content and the thread title.
I was using from the default mybb theme for the past 6 years. Now users feel the text is too small.
Also tell me the attribute to delete to remove the
" You have x unread private messages. The most recent ...." notification from the top of the forum, I feel, it is really distracting users from the original content.
Thanks for your time
regards
bijumk
Posts: 743
Threads: 45
Joined: 5th Apr 12
11th Aug, 04:52 am
(This post was last modified: 11th Aug, 04:57 am by Tan.)
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:
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;
}
Posts: 8
Threads: 1
Joined: 9th Aug 15
Thanks a ton, Tan..
I almost reached there ..
Posts: 8
Threads: 1
Joined: 9th Aug 15
Hi Tan
Thanks for your help. I did as per your directions and solved those font issues to an extent.
Users started complaining that the forum is looking somewhat dull and they cannot recognise between the thread heading, posters and the like. everything looking similar. Maybe because they used to the good old mybb fusion theme which I was using previously.
No I need some color. some backgrounds to distinguish between the thread subject and the text below.
How can I do that ?
Posts: 743
Threads: 45
Joined: 5th Apr 12
(23rd Aug, 08:03 am)bijukonneckal Wrote: No I need some color. some backgrounds to distinguish between the thread subject and the text below.
How can I do that ?
You are talking about the inside the post topics correct ?
Posts: 8
Threads: 1
Joined: 9th Aug 15
Posts: 8
Threads: 1
Joined: 9th Aug 15
Posts: 743
Threads: 45
Joined: 5th Apr 12
Sorry for the delay. It's quite busy here. I will have a solution for you today.
|