Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2725
webgroupbox - title style
posted

Hi

 

  Does the webgroupbox caption or title have  separate properties to style it?

 

Gary

  • 24497
    Suggested Answer
    posted

    Hi Gary,

    WebGroupBox does not provide options to customize appearance of title (legend element).

    Application may use static css classes for that and access legend by selector for ClientID of group-box. Below is example (codes in head with assumption that form has WebGroupBox1 control):

    <style type="text/css">
    #WebGroupBox1 legend
    {
      background: cyan;
     
    border: 1px solid red;
     
    font-size: 20px;
    }
    </style>