As a Partner, you can customize your marketplace(s) to match your preferred style and branding. Customizations include how your company logo appears.
Clickpath: Marketplaces > "Go to Marketplace" > "Settings"
On the marketplace Settings page, scroll down to the Logo section to upload your images.
Uses and Recommended Sizes
Logo
Used on lock screens (sign up/log in pages)
Appears in "Endorsed by" banner when you endorse a deal
Size recommendation: 48x48 pixels
Homepage Logo
Used in emails you've whitelabeled
Appears on marketplace homepage
In the marketplace editor: Pages > Home (PLP) > "Banner With Logo" component
Size recommendation: 250x150 pixels
Uploading SVG Images
Sometimes SVG images may not have a width and height set. In those cases, we recommend setting those values manually.
Option 1:
Edit the image with any text editor at your disposal and set in the width and height attributes:
<svg width="250" height="150"> </svg>
Option 2:
Edit the image with any text editor at your disposal and set in the “viewBox” attribute
The position and dimension of the image in the SVG viewport are set using the “viewBox” attribute, it has 4 values that need to be set:
min-x: top coordinates of the image
min-y: left coordinates of the image
width: width of the image starting from the min-x value
height: height of the image starting from the min-y value
<svg viewBox="0 0 250 150"> </svg>