Shopify - нацеливание на элемент списка - PullRequest
0 голосов
/ 01 июня 2018

Привет, я пытаюсь подбодрить вкладку «оформление» на моем сайте.Он создается с помощью этого кода Shopify.Могу ли я в CSS нацелиться на этот элемент «оформления» и поощрить его?

enter image description here

 <ul class="sf-menu">
        {% for link in linklists.main-menu.links %}
        <!-- does this link in our iteration point to the current page? -->
        {% assign current = false %}{% if template == 'index' and link.url == '/' %}{% assign current = true %}{% elsif collection.url == link.url %}{% assign current = true %}{% elsif blog.url == link.url %}{% assign current = true %}{% elsif page.url == link.url %}{% assign current = true %}{% elsif page_title == link.title %}{% assign current = true %}{% elsif template == 'list-collections' and link.url == '/collections' %}{% assign current = true %}{% elsif page_title == 'Products' and link.url == '/collections/all' %}{% assign current = true %}{% elsif template == 'article' and link.url == article.url %}{% assign current = true %}{% endif %}
        <!-- end of soul-searching about active class -->
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...