Hi –
Is there any easy way to add a banner ad/image or text below the header and above page content across our site?
Hey!
Try with this custom CSS:
#header:after{
content: "banner";
position: absolute;
height: 60px;
line-height: 60px;
width: 100%;
background: red;
text-align: center;
}
Cheers!
Josue