Hi Andrew,
Instead of using the sitemaplink class on any of the elements, try wrapping all of them in a single span or div with a special class, then style the links using the class as a parent selector.
<div class="footerlinks">
<portal:LoginLink id="LoginLink" runat="server" RenderAsListItem="false" />
|
<portal:SearchInput ID="SearchInput1" LinkOnly="True" RenderAsListItem="false" runat="server" />
|
<portal:SiteMapLink ID="SiteMapLink1" runat="server" RenderAsListItem="false" />
|
<portal:CopyrightLabel ID="cl1" runat="server" ShowYear="true" BeginYear="2008" />
|
<portal:UserProfileLink ID="UserProfileLink" runat="server" RenderAsListItem="false" />
|
<portal:LogoutLink ID="LogoutLink" runat="server" RenderAsListItem="false" />
</div>
/* CSS */
div.footerlinks,
div.footerlinks a,
div.footerlinks a:visited,
div.footerlinks a:active,
div.footerlinks a:hover{color: #fff; font-size: 0.75em; }
HTH,
Joe D.