Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
295
HeaderStyleDefault and FooterStyleDefault
posted

I have applied a style to the HeaderStyleDefault and it also gets applied to the footer...

<HeaderStyleDefault HorizontalAlign="Left" CssClass="LinkColor"...

<FooterStyleDefault Cursor="Default" Font-Underline="false" ForeColor="black" BorderStyle="None" BackColor="white" CssClass="FontStandard"></FooterStyleDefault>

.LinkColor{

color:#003376; }

.LinkColor:Hover{

text-decoration: underline;color:#003376; }

.FontStandard
{
 font-family: Arial;
 font-size: 8pt;
 color: #000000;
 font-weight: normal;
}

When I hover the footer columns, the underline treatment gets applied. If I remove the LinkColor from the header it removes the underline from both the header and the footer. So how is the style in the header impacting the footer?