Hi all, I have added an advert in sidebar-r in JA_blockk which seems to work OK in category view see here: https://www.treefruit.com.au/orchard/crop-protection/frost BUT it upsets the page layout when viewing the article (the advert attaches itself to the image). See here: https://www.treefruit.com.au/orchard/crop-protection/frost/1239-nz-frost-fans-appoints-new-director
Is there any way to have the advert appear below the image - so it appears with the article (where it should be?). Any suggestions greatly appreciated. Thanks, Nick
To avoid confusion, I am referring to the skyscraper advert on the right of the page, not the banner advert on the top of the page.
Hi
You can try this custom CSS:
@media (min-width: 576px){ .view-article .sidebar-r .banneritem { margin-top: 500px; } }
Thank you. That seems to work on larger screens but the problem remains on smaller screens. Perhaps there is another position or option in the template to put the advert? If not, I'm happy to add more custom CSS. Thanks.
NickMo1 I used Media Queries to apply above code for large screens only. If you want to have it in all screens, change above code to:
.view-article .sidebar-r .banneritem { margin-top: 500px; }
Thank you.