Title on blog entry page is unformatted

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
7/11/2005 4:55:06 PM
Gravatar
Total Posts 148

Title on blog entry page is unformatted

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;
+}
+


7/11/2005 5:22:19 PM
Gravatar
Total Posts 18439

Re: Title on blog entry page is unformatted

Yeah I noticed that a while back and have been meaning to fix it. I was thinking of changing it from BlogTitle to Head or SubHead or something that already exists in the stylesheet to make it stand out.
7/11/2005 5:26:46 PM
Gravatar
Total Posts 148

Re: Title on blog entry page is unformatted

Yep, that would work even better.  You wouldn't have to change all the included stylesheets and custom stylesheets wouldn't need to be updated either.
--Dean

You must sign in to post in the forums. This thread is closed to new posts.