How can I place two ads side by side?

Posted in: Newspaper
Post count: 4

aa

I want to place two ads on the top of article like this pic.

How can I do it?

Post count: 7909

Hi,

The theme doesn’t have an option to display to ads side by side for your post pages. You will need custom modifications in the code to achieve this, for example you can add the code in Theme Panel > Ads section in custom ad spots that you want yo use – http://screencast.com/t/LpPAVOv0 and use do_shortcode function in the post template that you use – http://screencast.com/t/ruQnSe1J and adjust the banners using custom css – http://screencast.com/t/eDF1dtDZ

<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');?>
<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_2"]');?>
.td-a-rec-id-custom_ad_1, .td-a-rec-id-custom_ad_2 {
float: left;
margin: 0 0 20px 20px!important;
}

Please note that if you use adsense you have to change a with g – .td-g-rec-id-custom_ad_1, .td-g-rec-id-custom_ad_2
If you don’t know how to do it I suggest to hire a professional developer, as we cannot provide custom work, sorry! I have provided an example how it can be done(I did not take time customize them).

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.