Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Select with Border

How do I get rid of that white background behind the image?

CSS:I thought webkit would do the trick but it's not

 <style>
 .qq {
    background-image: url('../images/select-category.png');
    width: 148px;
    height:34px;
    -webkit-appearance: none;
  }
 </style>

HTML:

 <div style="float:left;">
      <form>
          <select id="basic" class="qq" onchange="showFolders(this.value)">
              <?php
                  foreach ($folder as $t)
                  {
                      echo '<option value="'.$t['folder_id'].'">'.$t['name'].'</option>';
                  }
              ?>  
          </select>
      </form>
  </div>
share|improve this question
Is the image a transparency? How you considered doing away with the image altogether and using a pure CSS button style (i.e. CSS rounded-corners, box-shadow, etc.)? Have you considered improving your accept rate so people might be more willing to help you? – Mike Brant Dec 18 '12 at 1:15

2 Answers

up vote 0 down vote accepted

That white background is probably present in your image file select-category.png. To remove it, you will need to edit the image file itself.

If not, then it's coming from somewhere else. Please provide a small self-contained example, which contains just enough code to demonstrate the problem, without anything extra. Post this code into the question, or in a JSFiddle (jsfiddle.net). Be sure that this example hast HTML (not PHP) and contains your image file.

share|improve this answer
You were right on..when I opened the image on my mac in preview it took off the transparent borders, but they show-up on the web. Thanks – KraigBalla Dec 18 '12 at 1:59

The only problem i can think of is your image at the other hand you can try

    img{
       background-color:transparent;
       border:none;
    }

and to make a pure css3 button http://www.cssbuttongenerator.com/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.