By default, when you install the customer returns portal into your storefront it will look like this:
Many of the fonts and colors used in the portal can be customized to match the look and feel of your Shopify storefront. All it takes is a small snippet to insert into your core theme.
This is very easy to do, and this guide will walk you through the process.
The ReturnZap customer portal inherits its styling from the master design files used in your Shopify theme. While each theme is slightly different, the good news it that themes are generally consistent with how they handle these master stylesheets.
To get started, log in to your Shopify storefront as an admin user. Then, follow these steps:
That's it! Your changes should reflect on your returns portal once you reload the page.
Shopify has also published a useful how to guide on editing your theme's code.
Almost any element of the ReturnZap portal can be customized using CSS.
We have provided some common examples below, but advanced users can identify the div id of any element within the ReturnZap wrapper and customize accordingly using a similar method.
HubSpot has an article on how to do this if you aren't familiar.
The example snippets below can be pasted into your theme's css file individually. Remember to copy and paste them using the exact structure from below.
We use green as an example below, but you can use any of the color names supported by CSS, or any hex code beginning with #.
.returnzap .rz-label {<br> color: green !important;<br>}
We are using #FF0000 as a hex value in the example below, which is the hex code for "red". You can use any of the color names supported by CSS, or any hex code beginning with #.
.returnzap .rz-ui.rz-primary.rz-button{<br> background-color: #FF0000 !important;<br>}
Red buttons with green text is not a combination we recommend, but it illustrates the point
.returnzap .rz-ui.rz-primary.rz-button{<br> background-color: #FF0000 !important;<br> color: green !important;<br>}
Do you need assistance modifying your customer returns portal to match your brand look and feel? Please contact customer support at support@returnzap.com and we will be happy to assist.