Reputation: 784
I want to change color or remove the green border of tab. How can i do this? I use Telerik PageView in strip mode. Thanks
Upvotes: 1
Views: 1492
Reputation: 4648
Try using the followimg CSS and markup
.multiPage
{
border:none !important;//to remove the green border
background:green !important;/to change the background color
}
aspx:
<telerik:RadMultiPage runat="server" ID="RadMultiPage1"
CssClass="multiPage">
..................
</telerik:RadMultiPage>
Upvotes: 1