centering a breadcrumb line on product page

I Use the Shella theme in shopify. I use a third party custom code which introduces a breadcrumb on the pages. The code for it is..

{%- style -%}
{% if template == ‘product’ and section.settings.enable_product_page %}
.breadcrumbs{
display: block;
}
{% else %}
.breadcrumbs{
display: none;
}
{% endif %}

{% if section.settings.enable_complete_site %}
.breadcrumbs{
display: block;
}
{% endif %}

{% if template == ‘collection’ and section.settings.enable_collection_page %}
.breadcrumbs{
display: block;
}
{% endif %}

:root {
–svg_fill: {{ section.settings.breadcrumb_text_color}}
;
}

.home-icon-container {
display: inline-block;
margin-right: 4px;
vertical-align: sub;
}

.breadcrumbs {
padding: 1rem 5rem;
color: {{ section.settings.breadcrumb_text_color }}
;
background-color: {{ section.settings.breadcrumb_bg_color }}
}

.breadcrumbs li {
display: inline-block;
}

.breadcrumbs a {
text-decoration: none;
/Will put liquid customization here/
font-size: 15px;
color: inherit;
}

{%- if section.settings.breadcrumb_accent_color_bool -%}
.breadcrumbs a:last-of-type {
color: {{ section.settings.breadcrumb_accent_color }}
!important;
}
{%- endif -%}

.breadcrumb-delimeter:not(:last-child):after {
{%- case section.settings.breadcrumb_delimeter -%}
{%- when “angle_right” -%}
content: “›”;
font-size: 18px;
{%- when “slash” -%}
content: “/”;
font-size: 16px;
{%- when “arrow_right” -%}
content: “➤”;
font-size: 15px;
{%- when “squiggle_arrow” -%}
content: “\27FF”;
font-size: 25px;
{%- when “right_long” -%}
content: “\279E”;
font-size: 18px;
transform: translateY(5%);
{%- when “double_right” -%}
content: “\00BB”;
font-size: 20px;
{%- when “diamond_arrow_head” -%}
content: “⤞”;
font-size: 25px;
transform: translateY(5%);
{%- when “heavy_angle_right” -%}
content: “\276F”;
font-size: 18px;
transform: translateY(5%);
{%- else -%}

{%- endcase -%}
display: inline-block;
margin-left: 0.75rem;
margin-right:0.75rem;
speak: none;
}

.breadcrumbs [aria-current=“page”] {
color: inherit;
font-weight: normal;
text-decoration: none;
}
{%- endstyle -%}

{%- unless template == 'index' or template == 'cart' -%} {%- if section.settings.breadcrumbs_home_icon_bool -%}
{%- endif -%}

Home
{%- case template.name -%}
{%- when ‘article’ -%}
{%- for link in linklists[‘main-menu’].links -%}
{%- if link.url == blog.url -%}

{{ link.title | link_to: link.url }}
{% break %}
{%- endif -%}
{%- endfor -%}

{{ article.title }}
{%- when ‘product’ -%}
{%- capture product_url_string -%}
{%- for collection in product.collections -%}
{{ collection.url }}|
{%- endfor -%}
{%- endcapture -%}

{%- assign object_url_string = product_url_string | append: product.url -%}

{%- assign object_urls = object_url_string | split: ‘|’ -%}
{%- capture linklist_titles_str -%}
{%- for linklist in linklists -%}
{{ linklist.title | handleize }}|{%- endfor -%}
{%- endcapture -%}
{%- assign str_size = linklist_titles_str | size | minus: 1 -%}
{%- assign linklist_titles_str = linklist_titles_str | slice: 0, str_size -%}
{%- assign linklist_titles = linklist_titles_str | split: ‘|’ -%}

{%- assign level = 1 -%}
{%- for link in linklists[‘main-menu’].links -%}
{%- assign link_handle = link.title | handle -%}
{%- assign link_titles = link_titles | append: link.title | append: ‘|’ -%}
{%- assign link_urls = link_urls | append: link.url | append: ‘|’ -%}
{%- assign link_levels = link_levels | append: level | append: ‘|’ -%}
{%- assign link_parents = link_parents | append: ‘main-menu’ | append: ‘|’ -%}
{%- assign link_handles = link_handles | append: link_handle | append: ‘|’ -%}

{%- if linklist_titles contains link_handle -%}
{%- for clink in linklists[link_handle].links -%}
{%- if forloop.first == true -%}
{%- assign level = level | plus: 1 -%}
{%- endif -%}
{% assign clink_handle = clink.title | handle %}
{%- assign link_titles = link_titles | append: clink.title | append: ‘|’ -%}
{%- assign link_urls = link_urls | append: clink.url | append: ‘|’ -%}
{%- assign link_levels = link_levels | append: level | append: ‘|’ -%}
{%- assign link_parents = link_parents | append: link_handle | append: ‘|’ -%}
{%- assign handle = link.title | handleize -%}
{%- assign link_handles = link_handles | append: clink_handle | append: ‘|’ -%}

{%- if linklist_titles contains clink_handle -%}
{%- for gclink in linklists[clink_handle].links -%}
{%- if forloop.first == true -%}
{%- assign level = level | plus: 1 -%}
{%- endif -%}

{% assign gclink_handle = gclink.title | handle %}
{%- assign link_titles = link_titles | append: gclink.title | append: ‘|’ -%}
{%- assign link_urls = link_urls | append: gclink.url | append: ‘|’ -%}
{%- assign link_levels = link_levels | append: level | append: ‘|’ -%}
{%- assign link_parents = link_parents | append: gclink_handle | append: ‘|’ -%}
{%- assign link_handles = link_handles | append: gclink_handle | append: ‘|’ -%}

{%- if forloop.last == true -%}
{%- assign level = level | minus: 1 -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{%- if forloop.last == true -%}
{%- assign level = level | minus: 1 -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{%- endfor -%}

{%- comment -%} CONVERT TO ARRAYS {%- endcomment -%}
{%- assign str_size = link_levels | size | minus: 1 -%}
{%- assign llevels = link_levels | slice: 0, str_size | split: ‘|’ -%}

{%- assign str_size = link_titles | size | minus: 1 -%}
{%- assign ltitles = link_titles | slice: 0, str_size | split: ‘|’ -%}

{%- assign str_size = link_handles | size | minus: 1 -%}
{%- assign lhandles = link_handles | slice: 0, str_size | split: ‘|’ -%}

{%- assign str_size = link_parents | size | minus: 1 -%}
{%- assign lparents = link_parents | slice: 0, str_size | split: ‘|’ -%}

{%- assign str_size = link_urls | size | minus: 1 -%}
{%- assign lurls = link_urls | slice: 0, str_size | split: ‘|’ -%}

{%- assign depth = ‘3’ -%}
{%- assign bc3_parent_list_handle = ‘’ %}

{%- for url in lurls -%}
{%- if object_urls contains url and llevels[forloop.index0] == depth -%}
{%- unless url == product.url or url == collection.url -%}
{%- capture bc3 -%}
{{ ltitles[forloop.index0] | link_to: url, ltitles[forloop.index0] }}{%- endcapture -%}
{%- endunless -%}
{%- assign bc3_parent_list_handle = lparents[forloop.index0] -%}
{%- assign bc3_list_handle = lhandles[forloop.index0] -%}
{% break %}
{%- endif -%}
{%- endfor -%}

{%- assign depth = ‘2’ -%}
{%- assign bc2_parent_list_handle = ‘’ %}

{%- if bc3_parent_list_handle == ‘’ -%}
{%- for url in lurls -%}
{%- if llevels[forloop.index0] == depth -%}
{%- if object_urls contains url -%}
{%- unless url == product.url or url == collection.url -%}
{%- capture bc2 -%}
{{ ltitles[forloop.index0] | link_to: url, ltitles[forloop.index0] }}{%- endcapture -%}
{% endunless %}
{%- assign bc2_parent_list_handle = lparents[forloop.index0] -%}
{%- break -%}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- else -%}
{%- for list_handle in lhandles -%}
{%- if list_handle == bc3_parent_list_handle -%}
{% assign bc2_list_handle = list_handle %}
{%- assign bc2_parent_list_handle = lparents[forloop.index0] -%}
{%- assign bc2_list_title = ltitles[forloop.index0] -%}
{%- for bc2_sibling_link in linklists[bc2_parent_list_handle].links -%}
{%- assign bc2_sibling_title_handleized = bc2_sibling_link.title | handle -%}
{% if bc2_sibling_title_handleized == bc2_list_handle %}
{%- capture bc2 -%}
{{ bc2_sibling_link.title | link_to: bc2_sibling_link.url, bc2_sibling_link.title }}{%- endcapture -%}
{% break %}
{%- endif -%}
{%- endfor -%}
{% break %}
{%- endif -%}
{%- endfor -%}
{%- endif -%}

{%- assign depth = depth | minus: 1 | append: ‘’ -%}
{%- assign bc1_parent_list_handle = ‘’ %}

{%- if bc2_parent_list_handle == ‘’ -%}
{% for url in lurls %}
{%- if object_urls contains url and llevels[forloop.index0] == depth -%}
{%- unless url == product.url or url == collection.url -%}
{%- capture bc1 -%}
{{ ltitles[forloop.index0] | link_to: url, ltitles[forloop.index0] }}{%- endcapture -%}
{% endunless %}
{%- assign bc1_parent_list_handle = lparents[forloop.index0] -%}
{%- break -%}
{%- endif -%}
{%- endfor -%}

{%- else -%}
{%- for list_handle in lhandles -%}
{%- if bc2_parent_list_handle == list_handle -%}
{% assign bc1_list_handle = list_handle %}
{%- assign bc1_parent_list_handle = lparents[forloop.index0] -%}
{%- assign bc1_title = ltitles[forloop.index0] -%}
{%- for bc1_sibling_link in linklists[bc1_parent_list_handle].links -%}
{%- assign bc1_sibling_title_handleized = bc1_sibling_link.title | handle -%}
{% if bc1_sibling_title_handleized == bc1_list_handle %}
{%- capture bc1 -%}
{{ bc1_sibling_link.title | link_to: bc1_sibling_link.url, bc1_sibling_link.title }}{%- endcapture -%}
{% break %}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}

{%- if bc1 -%}

{{ bc1 }}
{%- endif -%}
{%- if bc2 -%}

{{ bc2 }}
{%- endif -%}
{%- if bc3 -%}

{{ bc3 }}
{%- endif -%}


{{ product.title }}
{%- else -%}
{% for link in linklists[‘main-menu’].links %}
{% if link.child_active or link.active %}

{{ link.title | escape }} {% for clink in link.links %} {% if clink.child_active or clink.active %} {{ clink.title | escape }} {% for gclink in clink.links %} {% if gclink.child_active or gclink.active %} {{ gclink.title | escape }} {% endif %} {%- endfor -%} {% endif %} {%- endfor -%} {% endif %} {%- endfor -%} {%- endcase -%} {%- endunless -%}

{% schema %}
{
“name”: “Breadcrumb Navigation”,
“settings”: [
{
“type”: “header”,
“content”: “Subscribe to our channel
},
{
“type”: “checkbox”,
“id”: “breadcrumbs_home_icon_bool”,
“label”: “Use the home icon next to the Home link in the breadcrumb”,
“default”: true
},
{
“type”: “select”,
“id”: “breadcrumb_delimeter”,
“label”: “Breadcrumb Delimeter Icon”,
“options”: [
{
“value”: “angle_right”,
“label”: “Angle Right”
},
{
“value”: “slash”,
“label”: “Slash”
},
{
“value”: “arrow_right”,
“label”: “Arrow Right”
},
{
“value”: “squiggle_arrow”,
“label”: “Squiggle Arrow”
}, {
“value”: “right_long”,
“label”: “Right Long”
}, {
“value”: “double_right”,
“label”: “Double Right”
}, {
“value”: “diamond_arrow_head”,
“label”: “Diamond Arrow Head”
}, {
“value”: “heavy_angle_right”,
“label”: “Heavy Angle Right”
}
],
“default”: “angle_right”
},
{
“type”: “color”,
“id”: “breadcrumb_bg_color”,
“label”: “Background Color”,
“default”: “#fff
}, {
“type”: “color”,
“id”: “breadcrumb_text_color”,
“label”: “Breadcrumb Color”,
“default”: “#465076
},
{
“type”: “checkbox”,
“id”: “breadcrumb_accent_color_bool”,
“label”: “Enable visited page color link in breadcrumb”,
“default”: false
}, {
“type”: “color”,
“id”: “breadcrumb_accent_color”,
“label”: “Visited Page Link Color”,
“default”: “#4770db
},
{
“type”:“checkbox”,
“id”:“enable_product_page”,
“label”:“Enable in Product Page”
},
{
“type”:“checkbox”,
“id”:“enable_collection_page”,
“label”:“Enable in Collection Page”
},
{
“type”:“checkbox”,
“id”:“enable_complete_site”,
“label”:“Enable on Complete Website”,
“default”: true
}
],
“presets”: [
{
“name”: “Breadcrumb Navigation”
}
]
}
{% endschema %}

My problem is that this is left justified and I want it centered. Also i want to vary what font size is used on mobile because theres a smaller area what do i do? thank you very much

an example page to see this…

https://nmm0d3-1x.myshopify.com/products/rolex-day-date-36-36mm-ice-blue-dial-fluted-bezel-president-bracelet-128236-new-2024-model?variant=50855593378005

also does anyone know how to make the main header and menu full width on desktop?

now for the breadcrumb in shopify I can go to the theme and i can paste in custom css which just goes for the breadcrumb item if I can do this how do i do this? thank you

n

1 Like

Hey @noliimitswag

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

this works great, but the problem is on mobile there is a big padding on the left. Is there any way to remove that on mobile and use a smaller font?