Create Journals
Update Journals

Journals
Find Users
Random

Read
Search
Create New

Communities
Latest News
How to Use

Support
Privacy
T.O.S.

Legal
Username:
Password:

How do I change the font in my journal?

Go to your modify journal page at: http://www.blurty.com/modify.bml

Then enter your username and password and click "proceed". At the bottom there is a box where you can enter style overrides. In that box you can enter CSS style rules as part of the GLOBAL_HEAD element of your journal, which affects all of your journal pages (recent, friends, calendar, day).

(Remember that font names may be case-sensitive, and must be spelled correctly, with any spaces in the correct places, in order to work properly):

GLOBAL_HEAD<=
<style type="text/css">
<!--
body, td, font, div, p {
font-family: "Century Gothic", "Arial", "Helvetica", sans-serif;
}
-->
</style>
<=GLOBAL_HEAD

If you would also like to change the size of your font, you can include this CSS rule:

GLOBAL_HEAD<=
<style type="text/css">
<!--
body, td, font, div, p {
font-size: 12pt;
}
-->
</style>
<=GLOBAL_HEAD

Combined they would be:

GLOBAL_HEAD<=
<style type="text/css">
<!--
body, td, font, div, p {
font-family: "Century Gothic", "Arial", "Helvetica", sans-serif;
font-size: 12pt;
}
-->
</style>
<=GLOBAL_HEAD

Note: These overrides will not work properly if you are using the Refried Paper style. You can override every element in that style with the following:

GLOBAL_HEAD<=
<style type="text/css">
<!--
* {
font-family: "Century Gothic", "Arial", "Helvetica", sans-serif;
font-size: 12pt;
}
-->
</style>
<=GLOBAL_HEAD

Last Updated:
bertho, 2003-03-22

*

Back to the FAQ.
Back to the support area.

© 2002-2008. Blurty Journal. All rights reserved.