> For the complete documentation index, see [llms.txt](https://docs.yaycommerce.com/manual/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.yaycommerce.com/manual/developer-zone/snippets.md).

# Snippets

1. **CSS to Custom Cursor**

```
/* Apply custom cursor to the entire body */
body {
  cursor: url('https://img.icons8.com/?size=70&id=14102&format=png&color=000000') 16 16, auto !important;
}

/* Crosshair cursor for links */
a {
  cursor: crosshair !important;
}
```
