如何显示我的艺术家'下拉菜单中的类别?

时间:2014-05-26 08:45:35

标签: html5 css3 bigcartel

我目前正在为Bigcartel网站自定义主题'Sidecar',并且我试图添加一个下拉菜单,该菜单仅填充固定侧边栏上的Artist链接。

我尝试过只使用简单的代码来包围但是这似乎不起作用。它不会下降,或显示任何东西,除了下图所示。

有人可以帮忙吗?

在我添加下拉列表之前 - https://db.tt/gYoAFdW3

然后我应用下面的代码 - https://db.tt/w3UFxzoA

{% if artists.active != blank %}
    <section>
        <h2 class="title">Artists</h2>
        <select>  
            <ul>
                {% for artist in artists.active %}
                    <li>
                        <a href="{{ artist.url }}" class="page {% if page.full_url contains artist.url %}current{% endif %}">
                            {{ artist.name }}
                        </a>
                    </li>
                {% endfor %}
            </ul>
        </select>
    </section>
{% endif %}

1 个答案:

答案 0 :(得分:1)

  {% if artists.active != blank %}
    <section>
      <h2 class="title">Artists</h2>
       <select onchange="location = this.options[this.selectedIndex].value;">  
         {% for artist in artists.active %}
        <option value="{{ artist.url }}">{{ artist.name }}</option>
        {% endfor %}
      </select>
    </section>
  {% endif %}