ZOPPS,
In DesktopDefault.vb you can remove the description from the Title tag and re-compile.
' set page title and description
<BR> If Not Me.Page.FindControl("Title") Is Nothing Then
<BR> Dim strTitle As String = _portalSettings.PortalName ' <b> comment this or remove it </b>& " " & _portalSettings.Description
<BR> Dim tab As DotNetNuke.TabStripDetails
<BR> For Each tab In _portalSettings.BreadCrumbs
<BR> strTitle += " > " & tab.TabName
<BR> Next
<BR> CType(Me.Page.FindControl("Title"), HtmlGenericControl).InnerText = strTitle
<BR> End If |