diff --git a/docs/03. advanced-examples/17. completely-custom-styles.md b/docs/03. advanced-examples/17. completely-custom-styles.md index f9ffd80..c2a2900 100644 --- a/docs/03. advanced-examples/17. completely-custom-styles.md +++ b/docs/03. advanced-examples/17. completely-custom-styles.md @@ -15,7 +15,7 @@ While Livewire Autocomplete comes with some default styles, to make getting up a ## Using custom components for styling Instead of having to repeat custom styles every time you implement the autcomplete component, we recommend creating custom blade components that wrap up the components from this package. -To do this, we recommend disabling the global namespace in the [autocomplete config](https://dev.livewire-autocomplete.com/docs/installation#publishing-the-config) by setting `use_global_namespace` to `false`. See [[#Namespaced components]]. +To do this, we recommend disabling the global namespace in the [autocomplete config](/docs/installation#publishing-the-config) by setting `use_global_namespace` to `false`. See [[#Namespaced components]]. By disabling the global namespace, it allows you to create your own component with the same names. Now in your `resources/view/components` directory, create a new directory called `autocomplete`.