Hi!
I’d like to make all the multi-columns on my “All Projects” page full width - but only for this page.
Could someone help with what code to modify?
thank you
Shopify URL: https://65a186-44.myshopify.com/
Password: meerew
Hi!
I’d like to make all the multi-columns on my “All Projects” page full width - but only for this page.
Could someone help with what code to modify?
thank you
Shopify URL: https://65a186-44.myshopify.com/
Password: meerew
Please add this code to theme.liquid file, after
{% if page.id == 89269305399 %}
{% endif %}
Hi @letsgetwasted ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Before the close head tag. Please insert this code:
{% assign full_url = request.host | append: request.path %}
{%- if full_url contains 'all-projects' -%}
{%- endif -%}
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Cheers, works perfectly, thank you!