I have an image and I would like to print it on all pages as a page header in center. I tried different methods, but the image is overlapping with the page content. Here is my HTML and CSS:
div.pageHeader {
position: fixed;
top: 0;
}
<div class="pageHeader" align="center">
<img width="600" height="150" src="logo.jpg" alt="logo">
</div>
I tried finding the perfect solution to my problem and I still can't able to solve.