Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET AJAX > ToolBar > RadToolBar

Not answered RadToolBar

Feed from this thread
  • Steve avatar

    Posted on May 22, 2012 (permalink)

    Hi all,

    How to give background color to RadToolBarButton?

    Reply

  • Posted on May 22, 2012 (permalink)

    Hi Steve,

    Try setting BackColor property of RadToolbarButton as follows.

    ASPX:
    <telerik:RadToolBarButton Text="Button1"  runat="server" BackColor="Aqua"></telerik:RadToolBarButton>

    Hope this helps.

    Thanks,
    Princy.

    Reply

  • Steve avatar

    Posted on May 23, 2012 (permalink)

    Thanks for your effort.
    I tried the code. Actually my problem is that the color is not changing when I hover it.

    Reply

  • Posted on May 24, 2012 (permalink)

    Hi Steve,

    Try overriding the default css as follows.

    CSS:
    <style type="text/css">
     .RadToolBar .rtbItem
      {
        background-color:Red !important;
      }
     .RadToolBar_Default .rtbItemHovered .rtbMid, .RadToolBar_Default .rtbItemHovered .rtbIn
      {
        background-color:Red !important;
        background-image:none  !important;
      }
    </style>

    Hope this helps.

    Thanks,
    Princy.

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET AJAX > ToolBar > RadToolBar
Related resources for "RadToolBar"

[   ASP.NET ToolBar Features  |  Documentation  |  Demos  |  Step-by-step Tutorial  ]