WordAds Top Banner Placement
- The topic ‘WordAds Top Banner Placement’ is closed to new replies.
Need help? Check out our Support site, then
Hi there,
Wanted to ask – is there any way (CSS or otherwise) to actually move where the Top of Page WordAds ad placement is? At the moment it’s rather awkwardly placed between the primary menu navigation and the header image, maybe it might be possible to place it either within the primary menu (below the section links) or right at the top above the logo/social menu so it’s not as disruptive to the design? Thank you!
The blog I need help with is: (visible only to logged in users)
Hi – I think we might be able to do it with this:
.masthead {
display: flex;
flex-direction: column;
}
.masthead .container-header {
order: -1;
background: transparent;
}
note that I made the background on the banner transparent so that you don’t have a chunky grey box at the top of the page.
Cheers – Ben