Inside Man
Inside Man

Reputation: 4372

Overriding Telerik Skin with Removing CSS Property

With Inspect Element, I Discover a part of telerik's skin's CSS code:

.RadRotator .rrClipRegion .rrItemsList  {
    margin: 0;
}

In inspect element I can remove margin property and I will get a nice result, how to override removing properties?

Upvotes: 0

Views: 64

Answers (1)

Richa
Richa

Reputation: 4270

Try putting margin: inherit; to override the defined margin.

Upvotes: 1

Related Questions