This is a migrated thread and some comments may be shown as answers.

how to give the color for RadSplitter

1 Answer 50 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
M Kumar
Top achievements
Rank 1
Iron
Veteran
M Kumar asked on 10 Jul 2020, 08:21 AM

Hi sir,

 

           I use rad splitter i give color but not display so how i give color  but rad splitter now work.

Note: 

     I need give color for i mark in screenshot pls reply ASAP

 

1 Answer, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 10 Jul 2020, 11:38 AM

Hi,

The marked elements of the Splitter are styled via background image, so you will need to remove it before applying a color to them.

For example, you can achieve that with similar CSS styles:

                <style>
                    /*tabs*/
                    table.RadSplitter .rspPaneTabContainer {
                        background-image: none;
                        background-color: red;
                    }
                    /*tabs title*/
                    table.RadSplitter .rspSlideHeader,
                    table.RadSplitter .rspSlideTitleContainer {
                        background-image: none;
                        background-color: blue;
                    }

                    /*tabs container*/
                    table.RadSplitter td.rspTabsContainer {
                        background-color: green;
                    }

 

 

Regards,
Vessy
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
Splitter
Asked by
M Kumar
Top achievements
Rank 1
Iron
Veteran
Answers by
Vessy
Telerik team
Share this question
or