I've been attempting to insert a banner ad that runs along the left side of my blog post.
Unfortunately, all my efforts so far have caused it to display above the content, pushing the blog post down the page.
You can view the live link here.
Here is what I added into the head:
<div id=”LeftFloatAds”><a href="https://www.pensionbee.com" target="_blank"><img src="https://www.moneynest.co.uk/wp-content/uploads/2018/12/160x600b.png" alt="PensionBee sidebar ad"></a></div>
And this is what I added into the CSS:
@media only screen and (min-width: 1400px) and (max-width:500px) {
#LeftFloatAds{
left: 0px;
position: fixed;
text-align: center;
top: 200px;
}
}
Just for your information, I followed this guide.