🖼 Sponsor Scrolling Marquee
How to add, edit, or remove sponsors on your fundraising page using C1 CMS Layout view.
Where things live
Open the sponsor list in C1 (Layout)
- Log in to C1 CMS.
- Select Layout in the top bar.
-
In the left tree, open:
Frontend → Marquee → sponsors. -
Click
sponsorsList.jsonto open it in the editor. - You will see a neatly formatted list. Keep the indentation and commas as shown in examples below.
Add a new sponsor
-
Upload the logo
In the Layout tree, right-click theimagesfolder → Upload File → choose a PNG or JPG. Aim for ~200–250 px wide and ~50 px tall. Example filename:newSponsor.png. -
Edit the list
Return tosponsorsList.json. In the"sponsors"section, place the cursor after the last sponsor but before the closing]. If the previous sponsor does not end with a comma, add one. - Paste a new block and change the text as needed:
{
"sponsorName": "New Sponsor Inc.",
"sponsorImage": "newSponsor.png",
"sponsorLevel": "Platinum Sponsor",
"sponsorURL": "https://www.newsponsor.com"
}
- Save using the editor toolbar. You should see a save confirmation.
- Check the page and refresh. The new sponsor should scroll with the others.
Edit an existing sponsor
-
Open
sponsorsList.jsonin Layout. - Find the sponsor block you want to change.
- Update the fields:
- Click Save and refresh the public page.
Remove a sponsor
-
In
sponsorsList.json, select the sponsor’s entire block from the opening{to the closing}. - Delete the block, including the trailing comma if it was the last item.
- Click Save and refresh the page to confirm removal.
Complete example
This is how a tidy, easy-to-read list should look.
{
"settings": {
"sponsorImagesDir": "/Frontend/Marquee/sponsors/images",
"maxImageHeightPX": 50,
"maxImageWidthPX": 220,
"fontFamily": "Arial, sans-serif",
"fontBaseSize": "18px",
"speed": 60
},
"sponsors": [
{
"sponsorName": "Southwest Diagnostic",
"sponsorImage": "swd.png",
"sponsorLevel": "Gold Sponsor",
"sponsorURL": "https://swdic.com/"
},
{
"sponsorName": "Hagar Vaughan Family Foundation",
"sponsorImage": "HVFoundation.png",
"sponsorLevel": "Silver Sponsor",
"sponsorURL": ""
},
{
"sponsorName": "Woot!",
"sponsorImage": "woot.png",
"sponsorLevel": "Bronze Sponsor",
"sponsorURL": "https://www.woot.com/"
},
{
"sponsorName": "New Sponsor Inc.",
"sponsorImage": "newSponsor.png",
"sponsorLevel": "Platinum Sponsor",
"sponsorURL": "https://www.newsponsor.com"
}
]
}
Tips and troubleshooting
Logo not showing
Make sure the filename in "sponsorImage" exactly
matches the uploaded file, including capitalization.
Logo looks stretched
Resize the image to roughly 200×50 px, or ask your designer for a horizontal logo.
Changes not visible
Force refresh the page with Ctrl+F5. If needed, clear your browser cache.
Formatting error
If the page breaks after editing, a comma or bracket may be missing. Compare with the complete example above.
Quick actions: Add → Upload logo, paste a new block, Save. Edit → Change fields, Save. Remove → Delete the block, Save.
Comments
0 comments
Please sign in to leave a comment.