I want to change look and feel of file upload field

Discussion in 'CSS' started by dizyn, Dec 4, 2008.

  1. #1
    I want to change look and feel of file upload field can i do with css, I tried but failed. I want to change the color of browse button to white and also text color to blue.

    any idea?

    thanks.
     
    dizyn, Dec 4, 2008 IP
  2. Tejbusiness

    Tejbusiness Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    kindly you can mail me your web page link
    my id is
    I give you some idea for your prob..
     
    Tejbusiness, Dec 4, 2008 IP
  3. LeetPCUser

    LeetPCUser Peon

    Messages:
    711
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #3
    
    button
    {
     background:#ffffff; 
     color:#0000ff;
    }
    
    Code (markup):
    This will change all buttons. Otherwise assign it a class:

    
    <input type="submit" class="submit" value="Click Me" />
    
    Code (markup):
    
    .submit
    {
     background:#ffffff; 
     color:#0000ff;
    }
    
    Code (markup):
     
    LeetPCUser, Dec 4, 2008 IP