I had explained the problem in image..
URL: redpandaoutdoor.in
breadcrumb.liquid Code which im using is:
.breadcrumbs { margin: 0 0 2em; background-color: {{ settings.breadcrumb_bg_color }}; padding-top: {{ settings.padding_top }}px; padding-bottom: {{ settings.padding_bottom }}px; padding-left: 20px; } .breadcrumbs__list { list-style-type: none; margin: 0; padding: 0; } .breadcrumbs__item { display: inline-block; } .breadcrumbs__item:not(:last-child):after { display: inline-block; content: '\00bb'; margin: 0 .6em; color: #959fa5; font-size: {{ settings.font_size }}px; } .breadcrumbs__link { text-decoration: none; color: {{ settings.breadcrumb_text_color }}; font-size: {{ settings.font_size }}px; } .breadcrumbs__link:hover { text-decoration: none; } .breadcrumbs__link[aria-current="page"] { color: #999 !important; font-weight: normal; text-decoration: none; } .breadcrumbs__link[aria-current="page"]:hover, .breadcrumbs__link[aria-current="page"]:focus { text-decoration: none; } .breadcrumbs__item:last-child:after { content: ''; } .disabled-breadcrumb { color: #999 !important; pointer-events: none !important; text-decoration: none !important; }{% unless template == ‘index’ or template == ‘cart’ or template == ‘404’ %}
{% assign t = template | split: ‘.’ | first %}
-
{{ blog.title | link_to: blog.url, class: “breadcrumbs__link” }}
-
{%- capture tag_url -%}{{ blog.url }}/tagged/{{ current_tags | join: “+” }}{%- endcapture -%}
-
{{ blog.title | link_to: blog.url, class: “breadcrumbs__link” }}
-
{{- page_title -}}
{% case t %}
{% when ‘page’ %}
{% when ‘product’ %}
{% unless collection %}
{% endunless %}
{% if collection %}
{% endif %}
{% when ‘collection’ %}
{% if current_tags %}
{% endif %}
{%- when ‘blog’ -%}
{%- if current_tags -%}
{%- else -%}
{%- endif -%}
{%- when ‘article’ -%}
{%- else -%}
{%- endcase -%}
{% endunless %}

