> For the complete documentation index, see [llms.txt](https://highfivethemes.gitbook.io/digital-nomad-user-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://highfivethemes.gitbook.io/digital-nomad-user-documentation/custom-settings/border-radius.md).

# Border Radius

**Digital Nomad** supports customizing **Border Radius** of **buttons** and **tags**.&#x20;

The theme provides two CSS variables that allow you to customize the border-radius of various elements:

1. `--border-radius-buttons` - this variable adjusts the `border-radius` for buttons.
2. `--border-radius-tags` - this variable adjusts the `border-radius` for tags.
3. `--border-radius-inputs` - this variable adjusts the `border-radius` for inputs.
4. `--border-radius-images` - this variable adjusts the `border-radius` for images.
5. `--border-radius-blocks` - this variable adjusts the `border-radius` for various elements on the website, including sidebar widgets, post's content blocks, etc.

***

## To customize:

1. Access the **Settings** > **Code Injection** from the admin menu.
2. Click <mark style="color:green;">**Open**</mark>
3. In the provided space, specify the desired border-radius using the appropriate CSS variable. For example:

   ```html
   <style>
       :root {
           --border-radius-buttons: 3px;
           --border-radius-tags: 3px;
           --border-radius-inputs: 3px;
           --border-radius-images: 6px;
           --border-radius-blocks: 6px;
       }
   </style>
   ```

<figure><img src="/files/l9YjejtkQcXAbeHLdRLU" alt=""><figcaption></figcaption></figure>

4. Click **Save**


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://highfivethemes.gitbook.io/digital-nomad-user-documentation/custom-settings/border-radius.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
