diff --git a/website/site/content/docs/custom-widgets.md b/website/site/content/docs/custom-widgets.md
index 95439e1e..2190a586 100644
--- a/website/site/content/docs/custom-widgets.md
+++ b/website/site/content/docs/custom-widgets.md
@@ -25,11 +25,11 @@ CMS.registerWidget(name, control, \[preview\])
**Params:**
-| Param | Type | Description |
-| ----------- | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `name` | string | Widget name, allows this widget to be used via the field `widget` property in config |
-| `control` | React.Component | string |
- React component that renders the control, receives the following props:
- **value:** Current field value
- **onChange:** Callback function to update the field value
- Name of a registered widget whose control should be used (includes built in widgets).
|
-| [`preview`] | React.Component, optional | Renders the widget preview, receives the following props: - **value:** Current preview value
- **field:** Immutable map of current field configuration
- **metadata:** Immutable map of any available metadata for the current field
- **getAsset:** Function for retrieving an asset url for image/file fields
- **entry:** Immutable Map of all entry data
- **fieldsMetaData:** Immutable map of metadata from all fields.
|
+| Param | Type | Description | |
+| ----------- | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `name` | string | Widget name, allows this widget to be used via the field `widget` property in config | |
+| `control` | React.Component | string | - React component that renders the control, receives the following props:
- **value:** Current field value
- **onChange:** Callback function to update the field value
- Name of a registered widget whose control should be used (includes built in widgets).
|
+| [`preview`] | React.Component, optional | Renders the widget preview, receives the following props: - **value:** Current preview value
- **field:** Immutable map of current field configuration
- **metadata:** Immutable map of any available metadata for the current field
- **getAsset:** Function for retrieving an asset url for image/file fields
- **entry:** Immutable Map of all entry data
- **fieldsMetaData:** Immutable map of metadata from all fields.
| |
* **field:** The field type that this widget will be used for.
* **control:** A React component that renders the editing interface for this field. Two props will be passed:
@@ -116,7 +116,7 @@ CMS.registerEditorComponent({
**Result:**
-![youtube-widget](/img/youtube-widget.png)
+![youtube-widget](/img/screen shot 2018-01-05 at 4.19.26 pm.png)
## Advanced field validation