Seeking advice on how to properly display an image as a page header in the center of all pages without overlapping with content. I have tried various methods, but still facing issues. Below is my HTML and CSS code:
div.pageHeader {
position: fixed;
top: 0;
}
<div class="pageHeader" align="center">
<img width="600" height="150" src="logo.jpg" alt="logo">
</div>
Struggling to find a solution that works seamlessly for my situation.