How can I change the arrow on a is not quite customizable at this point. – AVAVT Feb 14 '17 at 19:55

  • Possible duplicate of [How to style the option of a html "select"?](http://stackoverflow.com/questions/7208786/how-to-style-the-option-of-a-html-select) The question is about the ` – Ruan Mendes Feb 14 '17 at 19:57
  • 2 Answers2

    2

    I wanted to the same thing before. Here's what worked for me.

    select-dropdown {
         -webkit-appearance: none;
        -moz-appearance: none;
        text-indent: 1px;
        text-overflow: '';
        background: url('path/to/file.jpg') no-repeat right center !important; 
        background-color: white !important;
    }
    
    Sreetam Das
    • 3,226
    • 2
    • 22
    • 36
    2

    You can use an svg as a css background image like so:

    .product-single__variants { 
     background: url("data:image/svg+xml;utf8,{{ icon.svg | asset_url | replace: '"', "'" }}")  no-repeat;
    }
    
    GeorgeButter
    • 2,521
    • 1
    • 29
    • 47