DH
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.
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.
- MSAnsweredHello,
No. There is no way by settings. You will need to modify the header file.
Thank you - DHAnsweredok, thanks Mian,
Domi. - DHAnsweredfor 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