> For the complete documentation index, see [llms.txt](https://docs.rainn.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rainn.xyz/faq.md).

# 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.
