---
title: "Excluding 0-9 From A-Z Index"
canonical: "https://kb.uconn.edu/space/IKB/10785229117/Excluding%200-9%20From%20A-Z%20Index"
format: markdown
---
If your website has no pages with titles beginning with a number, you may want to consider excluding 0-9 at the top of your A-Z Index page. To get rid of these numbers, add the following CSS code to your Custom CSS:

```
#page-az .btn-group:nth-child(2) {
display: none;
}
```