MyBB Community Forums

Full Version: Where to find default font styles ???
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How/where are MyBB default font styles in CPA for edit with 'default_templates/header_templates/header' with <font face="style"> ?
Fonts are set in your theme's global.css
(2011-04-10, 09:16 PM)AJS Wrote: [ -> ]Fonts are set in your theme's global.css
Thanks much, now if we could just find the text Rolleyes
Am still trying to figure out how to format parts (ie like one word out of 5) of text that are found in the settings database file, like the 'Board Name'.
Am looking at a couple other MyBB forums for beginners like myself.
Any other ideas ?
Thanks again for your help !
You can style individual words by using HTML (usually the span tag) in templates or the language files.

Example:
A <span class="smalltext">little</span> bit of text.</span>

A little bit of text.

You can use HTML in the board name setting too.
(2011-04-21, 12:00 PM)AJS Wrote: [ -> ]You can use HTML in the board name setting too.
Thank you for the followup !
'HTML' in the config/setting worked fine for what we needed.
Think we had tried that b4, but was actually using HTML tags instead of CSS tags.
All of this forum Q&A has really helped us get to at least a point of understanding some of the simpler concepts involved.
Am sure there will be more, but hopefully the questions will get to be a little bit more intelligent. Rolleyes
Thanks again for helping with that !


(2011-04-21, 08:06 PM)akm Wrote: [ -> ]
(2011-04-21, 12:00 PM)AJS Wrote: [ -> ]You can use HTML in the board name setting too.
Thank you for the followup !
'HTML' in the config/setting worked fine for what we needed.
Think we had tried that b4, but was actually using HTML tags instead of CSS tags.
All of this forum Q&A has really helped us get to at least a point of understanding some of the simpler concepts involved.
Am sure there will be more, but hopefully the questions will get to be a little bit more intelligent. Rolleyes
Thanks again for helping with that !
Ooops, spoke too soon !
Quick followup question?

Font for Board Name is set at Config/General with CSS tags with name and working fine.

Thought other fonts for the 'name/category/thread' were set with .navigation, and had that set at...

.navigation {
color: ##0066CC;
font-size: 30px;
font-weight: bold;
}

<!--.navigation {
color: #000000;
font-size: 13px;
font-weight: bold;
}-->

but now it seems to be reverting to...

.navigation {
color: #000000;
font-size: 13px;
font-weight: bold;
}

any way to fix ?
Cant imagine the board name with CSS had anything to do with it, but... ?
<!-- --> is for commenting out HTML, not CSS.

In CSS you should use /* */

/* .navigation {
color: #000000;
font-size: 13px;
font-weight: bold;
} */

There's no point in keeping that in there anyway, you may as well just delete it.
(2011-04-21, 10:24 PM)AJS Wrote: [ -> ]<!-- --> is for commenting out HTML, not CSS.
In CSS you should use /* */
/* .navigation {
color: #000000;
font-size: 13px;
font-weight: bold;
} */
There's no point in keeping that in there anyway, you may as well just delete it.
Thanks for the direction.
HTML vs CSS is finally starting to sink in... did change the subject commenting out to css... have been keeping the original stuff around just in case need to see what changed.
Still not getting the 30px fonts back in the 'name/category/thread' navigation text.
It was there once upon a time due to changing the .navigation class, but not sure how it went away.
Will keep looking...


The board name is still larger than the rest of the breadcrumb, or do you want the rest of the breadcrumb larger as well?
(2011-04-22, 08:35 AM)AJS Wrote: [ -> ]The board name is still larger than the rest of the breadcrumb, or do you want the rest of the breadcrumb larger as well?
Thanks for the followup.
Yes, would like the rest of the breadcrumb (still dont understand that teminology, but will do some more browsing) larger also.
Had it that way once b4, thought with .navigation, but somehow lost it.
Is it possible to do that font css editing at the CP category name settings, like with the Board Name setting ?


Pages: 1 2