MyBB Community Forums

Full Version: Just a quick and easy thing needed to be done (Free)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello,

I just need someone to register at my forums and take care of this little problem I encountered while changing the theme.

[Image: yomamma.png]

I need someone to change the text I circled to the Gautami font and not the Times New Roman font. See? Easy. Why its for free. If you know where to go to change it, just tell me then. People interested can have more info. Also the link to the forums I am having problems with is in my signature, use common sense to know which one it is.

Thanks,

FPM
Admin CP > Templates & Style > Themes > Chose Your Theme > global.css.

Find:

#panel {background: red;color: #000000;border: 1px solid #D4D4D4;padding: 8px;font-size: 14px;}

Replace with:

#panel {background: red;color: #000000;border: 1px solid #D4D4D4;padding: 8px;font-size: 14px; font-style: Gautami;}

Not sure why you compressed the CSS, but that should do it.
Thanks a lot.

EDIT: Same result.....
Nevermind, do this instead:

Find:

body {background: black;text-decoration: none;}

Replace with

body {background: black;text-decoration: none;font-family: Gautami;}

But I would recommend starting over. Your CSS is completely messed up. Unclosed tags, missing properties...
@WeBex Its neither. Got the font from my computer, and I checked the spelling twice.

@faviouz

I tried that, and still same result.
You didn't make the change. It's not in your CSS.

And remove the previous change first.
(2010-11-09, 10:42 PM)FirePokemonMaster Wrote: [ -> ]Its neither. Got the font from my computer, and I checked the spelling twice.

If its a font then you should use family not style.

This:
font-family: Gautami, Arial, "MS Trebuchet", sans-serif;

Not:
font-style: Gautami;

Note: Check my spelling.
My bad, don't know what I was thinking. Damion is right. It's font-family.
To both of you:

Gautami is in my font family. Look below the circled part of the index. Thats Gautami font.


Also I don't see font family, only font style.
God.

Find:
body {background: black;text-decoration: none;font-style: Gautami;}

Replace with:
body {background: black;text-decoration: none;font-family: Gautami;}

That was my bad, was thinking something else. Toungue
Pages: 1 2