The title of a blog entry is unformatted when the entry appears on its own page. For example, see:
http://www.mojoportal.com/BlogView.aspx?pageid=2&ItemID=173&mid=19&pageindex=
Looks like the problem is that none of the included stylesheets contain a style definition for the BlogTitle class. The bug exists in 20050710 and probably all previous versions. Below is a patch to fix the problem for the default mojo1.css. Presumably, the same sort of patch needs to be applied to the other stylesheets.
--Dean
Index: mojo1.css
===================================================================
--- mojo1.css (revision 227)
+++ mojo1.css (working copy)
@@ -669,3 +669,9 @@
}
+.BlogTitle {
+ font-family: Verdana, Helvetica, sans-serif;
+ font-size: 12px;
+ font-weight: bold;
+}
+