# How to Add a Server Icon to Your FiveM Server (/docs/fivem/server-icon)



import { Step, Steps } from 'fumadocs-ui/components/steps';

Add a Server Icon [#add-a-server-icon]

<Steps>
  <Step>
    Create the icon [#create-the-icon]

    The icon must be a **96x96 pixel PNG** file. Use any image editor to create or resize it.
  </Step>

  <Step>
    Upload to the server [#upload-to-the-server]

    In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Files** in the sidebar. Upload the PNG to the **server root** (same directory as `server.cfg`).
  </Step>

  <Step>
    Add to server.cfg [#add-to-servercfg]

    Open `server.cfg` and add:

    ```ini
    load_server_icon myicon.png
    ```

    Replace `myicon.png` with your actual filename.
  </Step>

  <Step>
    Restart the server [#restart-the-server]

    Restart from **Console**. The icon appears in the FiveM server browser next to your server name.
  </Step>
</Steps>

Icon Not Showing? [#icon-not-showing]

* Verify the file is exactly **96x96 pixels** and **PNG format**
* Ensure the filename in `server.cfg` matches the uploaded file (case-sensitive)
* The icon file must be in the same directory as `server.cfg`

Related Guides [#related-guides]

* [Change Server Name](/docs/fivem/change-server-name)
* [Server Configuration](/docs/fivem/configure-your-server)
