Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.
Have you ever wondering who designed the look and feel of SharePoint? I have... sometimes i wonder why they did the look of SharePoint as it is today. One of the things i really don't like is that when you create a new site with a name and description the following look and feel is presented:
As you can see the description is below the line, means it takes up space of a table row where WebParts are normally displayed. The "Home" text has a ridiculous size in comparison with the title i just entered. So after some changes to the default.aspx file you get the following:
This is more like it :) So how did i do this? It is very easy. Just open the default.aspx file in an editor (or use Frontpage if you want), and look for the following:
<SharePoint:ProjectProperty Property="Description" runat="server"/>
This part will produce the description of the site. We are gonna move it to the position of the "Home" text. The home text can be found under the section <!-- Title -->. Just replace it and remove the description from its original place (don't forget to through away the <tr><td>....</td></tr>)
Now look for the following:
<SharePoint:ProjectProperty Property="Title" runat="server"/>
You will see that this is found in the same section <!-- Title --> just before the "Home"text. Notice the styles used in the <td> ... </td> elements for both parts.
The property title uses the style ms-titlearea, and the moved property description is using the ms-pagetitle. Now swap both styles.
This is everything we have todo. :)