I'm trying to add styling to a specific tabstrip content (e.g. removing the padding). But I can't seem to figure out a way to select the specific tabstrip content.
This code:
<TelerikTabStrip>
    <TabStripTab Title="General Info" Class="tab-pane-general-info">
         <div class="general-info"></div>
    </TabStripTab>
    <TabStripTab Title="Summary" Class="tab-pane-product-list">
        <div class="product-list"></div>
     </TabStripTab>
</TelerikTabStrip>Results in the following HTML:
I don't have a way to identify the different tab contents.
I know I can select on the div I created (.general-info), but I want to remove the padding from the k-tabstrip-content for a specific tab.
Any ideas?
