> For the complete documentation index, see [llms.txt](https://docs.nickarce.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nickarce.com/bricks-mega-menu/docs/bricks-mega-menu-template/getting-started/add-your-logos.md).

# Add Your Logos

## Add Your Desktop Logo

***

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

1. find layer "logo" and select your image
2. update any of the information found on the content tab of the image. It is setup to get you started with a preferred set of settings.

## Add Your Mobile Logo (if desired)

***

Feature added with V1.5

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

1. Find layer "mobile logo" and select your image
2. Navigate to your SCSS sheet and look for $mobile-logo and change it's value to "true"

```scss
$mobile-logo: false; // SELECTION (true/false)
```

{% hint style="info" %}
The mobile logo will not show on all browsers. It will show for browsers that support :has() see this link for browser compatibility <https://caniuse.com/?search=:has()>
{% endhint %}

3. In your SCSS sheet look for $mobile-logo-height and change its value to your preferred mobile logo height.

```scss
// WHAT HEIGHT DO YOU WANT THE LOGO? ******
$mobile-logo-height: 3rem;
```

### Q: What if you dont want a mobile logo?

A: You can delete the item "Mobile Logo" from the structure panel. The relevant CSS for it will not load unless you have $mobile-logo set to true.


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.nickarce.com/bricks-mega-menu/docs/bricks-mega-menu-template/getting-started/add-your-logos.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
