There is a leading space that appears in the hyperlinks?"My Profile", "Member List, "Login", "Logoff" and "Search" links.
Here is the patch that will correct the Member List link.? I will also send you a copy via email.? The other links will need the same change to relocate the space before the hyperlink.
?
Index: MemberListLink.ascx.cs
===================================================================
--- MemberListLink.ascx.cs (revision 308)
+++ MemberListLink.ascx.cs (working copy)
@@ -40,16 +40,16 @@
if(UseLeftSeparator)
{
memberList.Text = "<" + "span class='Accent'>|"
- + "<" + "a href='"
+ + " <" + "a href='"
+ SiteUtils.GetSiteRoot()
- + "/MemberList.aspx' class='SiteLink'> "
+ + "/MemberList.aspx' class='SiteLink'>"
+ ConfigurationSettings.AppSettings.Get("MemberListLink") + "<" + "/a>";
}
else
{
- memberList.Text = "<" + "a href='"
+ memberList.Text = " <" + "a href='"
+ SiteUtils.GetSiteRoot()
- + "/MemberList.aspx' class='SiteLink'> "
+ + "/MemberList.aspx' class='SiteLink'>"
+ ConfigurationSettings.AppSettings.Get("MemberListLink") + "<" + "/a>";