Hajitsu
Hajitsu

Reputation: 784

Change backcolor or hide border in Telerik radPageView

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

enter image description here

Upvotes: 1

Views: 1492

Answers (1)

Arun Bertil
Arun Bertil

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

Related Questions