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

Change color behind buttons

2 Answers 158 Views
ToolBar
This is a migrated thread and some comments may be shown as answers.
jlj30
Top achievements
Rank 2
jlj30 asked on 26 Mar 2014, 07:10 PM
Hi,

I've found several other similar threads, but have not been able to get the color behind the buttons to change.
Check out the attached screenshot to see what I'm trying to accomplish.

I've tried:

div.RadToolBar .rtbOuter
 {
     background-color: white;
 }

but that affects the buttons as well.

I've also tried:

.rtbWrap
{
    background: white;
}

but with the same results.

Any suggestions?

Thanks in advance.

Jim

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 27 Mar 2014, 06:40 AM
Hi,

Please try the following CSS code snippet which works fine at my end.

CSS:
<style type="text/css">
   .RadToolBar_Silk .rtbOuter
   {
       background-image : none !important;
       color : White !important;
       background-color : White !important;
   }
</style>

Thanks,
Princy.
0
jlj30
Top achievements
Rank 2
answered on 27 Mar 2014, 01:32 PM
Hi Princy,

Your CSS worked perfectly.
I did add:
    border-color : White !important; 
since there was still a small border showing.

Thanks for you help

Jim
Tags
ToolBar
Asked by
jlj30
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
jlj30
Top achievements
Rank 2
Share this question
or