Sidebar settings can’t hold a value and aren’t configurable. They’re informational elements that can be used to provide detail around your input settings and organize them. Sidebar settings are composed of [standard attributes](#standard-attributes). The following are the types of sidebar settings: - [header](#header) - [paragraph](#paragraph) > Tip: > If you want to add input settings, like a checkbox, then refer to [Input settings](/docs/storefronts/themes/architecture/settings/input-settings). ## Standard attributes The following are standard attributes across sidebar settings:
Attribute Description Required
type The input setting type, which can be either header or paragraph. Yes
content The setting content, which will show in the theme editor. Yes
## header A setting of type `header` outputs a header element to help you better organize your input settings. In addition to the [standard attributes](#standard-attributes) of a sidebar setting, `header` type settings have the following attribute:
Attribute Description Required
info An option for informational text about the setting. No
For example, the following setting generates the following output: ```json { "type": "header", "content": "Email Signup", "info": "Subscribers added automatically to your “accepted marketing” customer list. [Learn more](https://help.shopify.com/manual/customers/manage-customers)" } ```

## paragraph A setting of type `paragraph` outputs a text element to help you better describe your input settings. For example, the following setting generates the following output: ```json { "type": "paragraph", "content": "All of your collections are listed by default. To customize your list, choose 'Selected' and add collections." } ```

## Create links You can [add links](https://www.markdownguide.org/basic-syntax/#links) to the `info` settings attribute by enclosing the link text in brackets and then following it immediately with the URL in parentheses. For example, the following setting generates the following output: