Hi Rainer,
Sorry for the late answer.
In
Popeye theme you can update php/home.php:
from
Code: Select all
<img class="img-thumbnail rounded-circle mx-auto d-block" height="140px" width="140px" src="<?php echo ($site->logo() ? $site->logo() : HTML_PATH_THEME_IMG . 'popeye.png') ?>" alt="<?php echo $site->title(); ?>">
to
Code: Select all
<img class="img-thumbnail mx-auto d-block" src="<?php echo ($site->logo() ? $site->logo() : HTML_PATH_THEME_IMG . 'popeye.png') ?>" alt="<?php echo $site->title(); ?>">
(remove rounded-circle class and height and width attributes)
In
Simple.css theme you can update php/header.php:
from
Code: Select all
<h1>
<!-- Site logo -->
<?php if($site->logo()): ?>
<img class="site-logo" src="<?php echo $site->logo() ?>" alt="Site logo">
<?php endif ?>
<!-- Site title -->
<?php echo $site->title() ?>
</h1>
to
Code: Select all
<!-- Site logo -->
<?php if($site->logo()): ?>
<img src="<?php echo $site->logo() ?>" alt="Site logo">
<?php endif ?>
<h1>
<!-- Site title -->
<?php echo $site->title() ?>
</h1>
(move logo on top of <h1> and remove class attribute)
Hope this helps.