Logo image and background image not displaying

Created on 14 February 2025, about 2 months ago

Problem/Motivation

If I create a certificate using the template, the logo and background image does not display in the certificate preview. In the final generated pdf, the logo displays but the background image still does not display.

🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇳🇬Nigeria chike Nigeria

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @chike
  • 🇳🇬Nigeria chike Nigeria

    I found the problem.

    The image was actually rendering. The image is certificate borders so is transparent in the middle. It is larger in size than the certificate so when it rendered, the borders weren't showing so it was basically showing the middle part which is transparent.

    I adjusted this portion of the CSS in the template,

      .page-bg img {
        min-height: 600px;
        min-width: 600px;
      }

    to this,

      .page-bg img {
        min-height: 600px;
        min-width: 600px;
        width: 100%;  
        height: auto;
      }

    and the background image was brought into view.

    Thanks.

Production build 0.71.5 2024