Theme for particular blog view

Post Reply
RrBd1957
Jr. Bludit
Posts: 3
Joined: Tue Apr 07, 2026 9:18 pm

Hi,
I am searching for a Theme looking as similar as possible to my old Blog:
  • "Cinemascope" image on top
  • Dark Text on White ground
Currently I struggle most with the header image.
This attempt

Image
goes into the right direction, but I cant find where to change the header image

Others where I found how to change the header image like Popeye and Simple destroy the header Image:
Image

Can you help me to find the best suitable Theme?

CU

Rainer
User avatar
zacharielle
Ssr. Bludit
Posts: 19
Joined: Sat Jan 07, 2023 7:51 am
Has thanked: 16 times
Been thanked: 12 times

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.
Post Reply