C1Pager supports CSS styling, enabling you to completely customize the control's appearance. This topic will walk you through applying CSS styling to the C1Pager control.
<asp:Content>
tags.<style type="text/css"></style>
tags between the <asp:Content>
tags. This set of tags will allow you to add CSS styling to your control.
.wijmo-wijpager
{
background-color: #002277;
font-style: italic;
font-family: Blackadder ITC;
}
.ui-page a:link
{
background-color: Fuchsia;
}
.ui-page a:hover
{
background-color: Purple;
color: White;
}
Press F5 to run your program. Your pager element should appear as in the following image.