Ismet posted on February 01, 2010 15:29
DotNetNuke supports
skin objects to add
custom tokens to your skin.
Login token is one of them and sometimes you may want to style this token using stylesheet.
First of all you need to define a class for your
login control.
<dnn:LOGIN runat="server" id="dnnLOGIN" CssClass="MyClass" Text="Sign-in" LogoffText="Sign-out" />
Then define link styles for your control.
a.user:link, a.user:active, a.user:visited,
a.login:link, a.login:active, a.login:visited
{
color:#ECF123;
font-weight:bold;
text-decoration:none;
}
Please add your comments, if you like this simple tutorial.