From ceae214a54679259da679a8b8a54e0a9c6c65968 Mon Sep 17 00:00:00 2001 From: Josh Hanley Date: Sat, 30 Nov 2024 08:48:07 +1000 Subject: [PATCH] Update docs/03. advanced-examples/17. completely-custom-styles.md --- docs/03. advanced-examples/17. completely-custom-styles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.