how to set Button Font and color

  1. #1

    how to set Button Font and color

    How do i set Ext.net Button font color and size in 2.0 version
        <style>
    .ux-btn button {
                font-size: 16px;
                font-weight: bold;
                height: 30px;
                width:90px;       
                color: #003867;
            }
        </style>
    
      <ext:Button runat="server" ID="buttonRegistration" Text="Sign Up"    StyleSpec="border-radius: 10px;"  CtCls="ux-btn" Width="100" Height="40" Icon="UserAdd"/>
    I have tried this but it doesnt work for me
  2. #2
    Please try the following:

    <!DOCTYPE html>
    <html>
    <head id="Head1" runat="server">
        <style type="text/css">
            .test
            {
                border-radius: 10px;
            }
            .testInner .x-btn-default-small .x-btn-inner
            {
                font-size: 20px;
                color: #0066cc;
            }
        </style>
    </head>
    <body>
        <ext:ResourceManager ID="ResourceManager1" runat="server" />
        <ext:Button runat="server" ID="buttonRegistration" Text="Sign Up" Cls="test"
            CtCls="testInner" Width="100" Height="40" Icon="UserAdd" />
        
    </body>
    </html>
  3. #3
    Thanks it works fine.
  4. #4
    You're welcome. Let me know if you need further assistance

Similar Threads

  1. [CLOSED] change button font color and size
    By Pablo_Azevedo in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Apr 16, 2013, 8:50 PM
  2. How to change the font color for Ext Label
    By rasu_13 in forum 1.x Help
    Replies: 0
    Last Post: Apr 03, 2010, 3:12 AM
  3. Html Editor font color
    By speedstepmem2 in forum 1.x Help
    Replies: 5
    Last Post: Sep 29, 2009, 9:59 AM
  4. How to set Label Font size and color
    By Dinesh.T in forum 1.x Help
    Replies: 6
    Last Post: Aug 11, 2009, 2:17 PM
  5. How to set Panel Font size and color
    By Dinesh.T in forum 1.x Help
    Replies: 1
    Last Post: Jul 30, 2009, 1:17 PM

Posting Permissions