Question: Change the main title to an image logo

Change the main title to an image logo

Hi, I would like to change the main title (at top/left) into a picture logo; the text is loaded into **themes/default/admin/views/header.php** from this line : ```php <a class="navbar-brand

DH

Dominique HUGO

Asked
Hi,
I would like to change the main title (at top/left) into a picture logo; the text is loaded into **themes/default/admin/views/header.php** from this line :

```php
<a class="navbar-brand" href="<?= admin_url() ?>"><span class="logo"><?= $Settings->site_name ?></span></a>
```

before I investigate deeply and/or change the code/css, is there a simply way to put a picture there ?

thanks in advance,
Domi.
  • MS

    Mian Saleem

    Answered
    Hello,

    No. There is no way by settings. You will need to modify the header file.

    Thank you
  • DH

    Dominique HUGO

    Answered
    ok, thanks Mian,
    Domi.
  • DH

    Dominique HUGO

    Answered
    for someone who is interesting, in **header.php**, change the following :

    ```php
    <a class="navbar-brand" href="<?= admin_url() ?>"><span class="logo"><?= $Settings->site_name ?></span></a>
    ```

    into

    ```php
    <a class="navbar-brand" href="<?= admin_url() ?>"><img src="<?= base_url('assets/images/company_logo.png'); ?>" alt="<?= $Settings->site_name ?>"></a>
    ```

    Domi.
  • Login to Reply