MyBB Community Forums

Full Version: Posting font does not change at all
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have tried everything, but nothing... Sad

I want, when a user posts, the font to be set to Verdana. Right now, I think that the font is set to Tahoma.

Any help will be appreciated!
Add this to the .post_body class in global.css:

font-family: Verdana, Arial, Sans-Serif;

If there are already fonts assigned there, just change them. Smile
That was the answer I was looking for. It works... but now the ''Register'', ''Help'' ''Member List'', ''View New Posts'' and ''View Today's Posts'' commands (on the vBulletin like bar) in my forum here have changed to Verdana font too.

How do I fix that?
You have this in the .thead class which is causing those to be Verdana:
	font-family: Verdana;
	font-style: Verdana;
I removed that but nothing changed.
Change the font-family to what you want them to be instead of removing them. Smile
Ok, I fixed that. Now I need to change the message font. And when I say the message font, I mean the, for example, ''You have successfully logged in''.
(2010-08-19, 04:52 PM)StormIsComing Wrote: [ -> ]Ok, I fixed that. Now I need to change the message font. And when I say the message font, I mean the, for example, ''You have successfully logged in''.


I still need this.. Also, I want to change the whole forum font.

Changing the font family for body will change the font used on most areas of the forum.

Just look through global.css and change the font where you want. Smile