Hi @Joseph Hedbon,
You need to ensure that there is content in the header.
For example: <header><h1>Header</h1></header>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<style>
body {
background: url('Resources/R.jpg') 100% 100% fixed no-repeat
}
body {
background-size: cover
}
header {
background: url('Resources/Header2.png');
text-align: center;
}
</style>
<title></title>
</head>
<body>
<header><h1>Header</h1></header>
</body>
</html>
If you don't need the content in the header but just the image, you can use <img> directly in the header.
<header style="text-align: center">
<img src="Resources/Header2.png" alt="Banner Image" />
</header>
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.