Align
What is the recommended image size for a banner?
Don't see your question? Contact us and we'll get you answers!
Still have questions?
Do you do collaborations or provide theme customization services?
expand_moreGreat question! We'd love to collaborate but we're fully focused on our internal/product roadmap these days.
But we'd be happy to connect you with a vetted dev/designer/team who can help customize our themes and/or build something more custom as needed. Check out the providers below, or get in touch with more specifics â we'd be happy to point you in the right direction!
Get a stacked team of Shopify designers and developers. Speedy turnarounds. 1/2 typical agency costs. HeyCarson handles short-term projects, recurring needs, and full-time Shopify work.
Pay by the task or per hour. Project quotes start at USD $85/hour. Get in touch with HeyCarson â
A closed network of the most talented Shopify developers around. Get paired directly with a freelancer in hours and execute on projects big & small including Shopify theme customization. They've reviewed over 15,000 developers, designers, and marketers and hand selected the top 3%.
Per-project pricing, starting at USD $75/hour. Get in touch with Storetasker â
How can I customize the font or color of product card badges?
expand_moreAs mentioned elsewhere, we do not officially support/provide any non-native customizations. But the basic idea of how you could customize the font, color, or something else used in product badges is to use some simple CSS customization:
p.c-card-product__badge {
font-family: YourFamilyName;
}
How can I make cards all equal height?
expand_moreTo make all cards in a row be equal height, we must stretch cards to be the full height of the row.
We will be adding better settings for this in the near future, but in the meantime you can add a small snippet of custom CSS to the section's Custom CSS setting:
Here's the custom CSS you'll need to add:
.card {height: 100%;}
And if you want the card text to always be directly under the image (instead of anchored to the bottom of the card), you can add this CSS too:
.card__content {
justify-content: flex-start;
}
How do I add an anchor link to the FAQ page?
expand_moreGreat question! This is a little more "advanced" but is straightforward enough. You'll basically just need to find and link to the section ID of each accordion.
Note: this is easier to do on a "live" page instead of in the theme editor/template, but both are possible.
We've recorded a little example of this process which is available below:
đ Screenshare showing how to find the a section ID using your browser's devtools.
How do I create a callout within a blog post?
expand_moreWant to make this?
Then add the callout class to your element, e.g.
Want to make this?
You can also put everything inside a div, ie
Shopify has a great set of resources available to learn about updating themes. We encourage you to start here:
help.shopify.com/en/manual/online-store/themes/managing-themes/updating-themes
đ Resources
Shopify has a great set of resources available to learn about updating themes. We encourage you to start here:
help.shopify.com/en/manual/online-store/themes/managing-themes/updating-themes
How do I get a product's slideshow gallery to automatically switch to the correct variant image?
expand_moreTo get a product's slideshow gallery to automatically switch to the correct variant image, you'll need to add/select an image for each variant within the Shopify admin. Here's how to do that:
Here's a quick screencapture of the process:
How do I get the ReCharge app to work on product pages?
expand_moreThe ReCharge app needs a quick manual update to work properly.
You should only do this after you've fully installed the ReCharge app and it has added all of their snippets to your theme files. To confirm this, you should see these files in your theme's "Snippets" directory:
In your Shopify admin, navigate to the Edit code, then find and click into the component-form-product.liquid file within the Snippets directory.
Find the line which includes the code below â this should normally be found around line 19:
{%- form 'product', product, data-productid: product.id, id: product_form_id, class: product_form_id, novalidate: 'novalidate', data-type: 'add-to-cart-form' -%}
Paste the code below under that line â save your update and check to ensure ReCharge is working as expected!
{% if product.available and request.page_type == 'product' %}{% render 'subscription-product' with product as product %}{% endif %}
How do I remove the âAdd to cartâ button from product cards?
expand_moreOpen Theme settings>Cards
Uncheck "Show quick add buttonâ
Note: A âView productâ button will replace the âAdd to cartâ button if unchecked.
View
Align
What is the recommended image size for a banner?
Read more
Align
How to I get banners to look better in desktop and mobile?
Read more
Align
How do I get a product's slideshow gallery to automatically switch to the correct variant image?
Read more
Do you do collaborations or provide theme customization services?
Read more
Align
Why is my video not playing with audio?
Read more
How do I create a callout within a blog post?
Read more
What is an Accordion block?
Read more
Align
How do I add an anchor link to the FAQ page?
Read more