# FAQ

## Where is the link to all of the fa icons?

Here you go: <https://fontawesome.com/icons?d=gallery>

## How do I change this image on the top of my browser in the tab (aka the favicon)?

![](/files/-Liou_pl43RUPMiPqx2q)

Simply navigate to `YourPublicFolder/img/`

You will see a file called `favicon.ico`

Replace that file with your own icon. It needs to be renamed to "favicon.ico" and its dimensions should be 32x32 in pixels.

## The logo on the navbar is a little small. How can I change this?

Simply navigate to `app/resources/views/themeName/includes/nav/main.blade.php`

You will see a block of code that says something like&#x20;

```
@if($configurable['community_logo']['value'] != "")
    <img src="{{$configurable['community_logo']['value']}}" alt="{{$configurable['site_name']['value']}}" style="height: 40px; width: auto;">
@elseif($configurable['community_logo']['value'] != "" && $configurable['site_name']['value'] != "")
    <img src="{{$configurable['community_logo']['value']}}" alt="{{$configurable['site_name']['value']}}" style="height: 40px; width: auto;">
@else
    {{$configurable['site_name']['value']}}
@endif
```

Replace `style="height: 40px; width: auto;"` with what you want. It is recommended that you only change the height paramater to keep everything looking nice.


---

# 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://docs.rainn.xyz/faq.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.
