# Remove menu item active state?

By default, Navi+ checks the current page URL to show the active state on the menu (using a gray background). This helps your customers navigate more easily.

However, the active state is not always necessary, especially on wide desktop screens where there are other ways to indicate "where you are," such as breadcrumbs. Sometimes, you may want to remove the active state to make the menu look cleaner.

<figure><img src="/files/1rP5SiJJmkOkvpOlDJQo" alt=""><figcaption></figcaption></figure>

Here’s how to do it:

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

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

Method 1: If you want to apply it only to this menu only, the CSS code is as follows (paste it into the Internal Stylesheet / CSS box):

```
ul li.navi-active {
  background: initial;
}
```

Explanation: This adds a CSS rule like `#SF-123456789 ul li.navi-active { background: initial; }` to the page, applying only to this menu (with embedID `SF-123456789`) and not affecting other menus.

Method 2: If you want to remove all active effects across all Navi+ menus, use the following code (paste it into the Global Stylesheet / CSS box):

```
.naviItem ul li.navi-active {
  background: initial;
}
```


---

# Agent Instructions: 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://help.shopifas.com/manual/website/help.naviplus.io/frequently-asked-questions/customize-user-interface-ui/remove-menu-item-active-state.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.
