Вопрос
How to replace the site name with a logo image in the header.
How to replace the site name with a logo image in the header. I tried to find the file in the resources folder but I couldn’t find it.
6
1.0k
The site header file is located:
resources/views/default/global/base-header.phpThere you need to find the line:
and replace it:
html <a title="<?= __('app.home'); ?>" class="logo" href="/"> <img src="/assets/images/logo.jpg" alt="<?= config('meta', 'name'); ?>"> </a>Don’t forget to upload the logo (img) so that it is here:
/assets/images/logo.jpgIn the new version: https://github.com/LibArea/libarea/blob/main/resources/views/default/main.php#L16