> ## Documentation Index
> Fetch the complete documentation index at: https://buttercms.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Creating Collection items

> Collections store reusable data that can be referenced across your website. This guide shows you how to add Collections and manage their items.

## Quick references

<CardGroup cols={2}>
  <Card title="Overview: ButterCMS content types" icon="compass" href="../../../core-concepts/content-types/overview">
    Check out our core concepts article on Pages, Collections, and the Blog Engine to understand the differences
    between these content types and when to use each one.
  </Card>

  <Card title="Collections deep dive" icon="database" href="../../../core-concepts/content-types/collections">
    Take a deep dive into the Collections content type, including features, supported fields, and more.
  </Card>
</CardGroup>

## Create a Collection

Before you can add items to a Collection, you need to create it.

<Note>
  You must have adequate permissions to create a new Collection.
</Note>

<Tip>
  If you like to learn by doing, check out our [tutorial on building a Collections-based navigation menu](../../../build-your-app/how-to-recipes/add-a-feature/navigation-menus-collections) for an example of how to set up a Collection with multiple nested levels.
</Tip>

<Steps>
  <Step title="Create the Collection">
    There are two ways to create a new Collection.

    You can either click ***Content Types*** in the left sidebar, then ***New Content Type***, then ***Collection***, or you can click on the ***Collections*** icon in the left sidebar, then ***New item***, then ***Create new collection***.
  </Step>

  <Step title="Add fields">
    Click on a field type in the menu pane that appears to add it to your Collection schema. Give the field a name, slug, and add any necessary configuration options.

    <Tip>
      For more information on the various field types and the configuration options they offer, such as default values, help text, validation, and more, check out our [core concepts article on fields](../../../core-concepts/field-types/field-basics).
    </Tip>
  </Step>

  <Step title="Click the Create Collection button">
    Click the ***Create Collection*** button in the upper-right corner to save the fields to the Collection schema.
  </Step>

  <Step title="Save Collection metadata">
    Fill in the Collection name. Then, click ***Save as a Collection***. You'll immediately be given the opportunity to add your first item to the Collection.
  </Step>
</Steps>

## Adding items to a Collection

To add items to an existing collection, either:

* Roll over the ***Collections*** button in the left sidebar, and click the grey plus sign next to the Collection you want to add an item to; or
* Click on ***Collections*** in the left sidebar, then click ***New Item*** and select the Collection you want to add an item to.

Fill in the applicable fields on your Collection item, and click ***Publish*** or ***Save Draft*** to save your changes.

## Editing existing items

1. Navigate to the Collection.
2. Click on the item you want to edit.
3. Make your changes.
4. Click **Save** or **Publish.**

<Info>
  Changes to Collection items may affect all Pages or Collection items that reference them. For example, updating a testimonial's quote updates it everywhere the testimonial is displayed.
</Info>

## Deleting Collection items

1. Navigate to the Collection.
2. Find the item you want to delete.
3. Click the delete icon or select the item and use bulk delete.
4. Confirm the deletion.

<Warning>
  **Caution**: Deleting a Collection item will remove it from all Pages that reference it. Make sure you no longer need the item before you delete it.
</Warning>

## Collection label

The Collection Label determines which field is displayed in the list view. Your developer can configure this when setting up the Collection. Common choices include:

* **Name**: For categories, authors, and team members
* **Title**: For FAQ questions and testimonials
* **Date**: For events and time-sensitive content

{/* IMAGE_SOURCE: file_path="knowledge-base/content-modeling-basics/use-cases-for-buttercms-collections.md" */}

![Collection Label Setting](https://cdn.buttercms.com/7cbotFOeTEadkWlUieTd)

## Next steps for managing content

Learn about content statuses, such as published and draft, how to schedule content, how to preview changes in the
dashboard, how versioning works, and more.

<CardGroup cols={3}>
  <Card title="Understanding content status" icon="circle-check" href="../../publishing-lifecycle/content-status" />

  <Card title="Managing drafts" icon="file-pen" href="../../publishing-lifecycle/managing-drafts" />

  <Card title="Previewing changes in the dashboard" icon="eye" href="../../publishing-lifecycle/previewing-changes" />

  <Card title="Scheduling content" icon="calendar" href="../../publishing-lifecycle/scheduling-publication" />

  <Card title="Versioning & history" icon="calendar" href="../../versioning-history/revision-history-overview" />

  <Card title="Deleting content" icon="trash" href="../../publishing-lifecycle/deleting-content" />
</CardGroup>
