diff --git a/packages/webawesome/docs/docs/customizing.md b/packages/webawesome/docs/docs/customizing.md
index f569d0286..5e7146850 100644
--- a/packages/webawesome/docs/docs/customizing.md
+++ b/packages/webawesome/docs/docs/customizing.md
@@ -132,7 +132,7 @@ Most (but not all) components expose parts. You can find them in each component'
If you're using [native styles](/docs/utilities/native), any custom styles added for a component should also target the corresponding native element. In general, the same styles you declare for components will work just the same to style their native counterparts.
-For example, we can give `` the same custom styles as `` by using the custom properties required to style the component:
+For example, we can give `` the same custom styles as `` by using standard CSS properties and CSS parts:
```html {.example}
Web Awesome checkbox
@@ -143,37 +143,16 @@ For example, we can give `` the same custom styles as `
-```
-
-Or, if using CSS parts, we can give both checkboxes the same custom styles using standard CSS properties:
-
-```html {.example}
-Web Awesome checkbox
-
-
-
-
```