How to Set 'Ads Open' in a New Window

Posted in: Newspaper
Post count: 12

Hi,

How to set the google ads open in a new window ?
Could not find this in general threads.

Regards,
Aron

Post count: 23312

Hello LeagueOne,

Unfortunately, our theme does not control the ad code but only displays it. For more details about your google ads, please contact the Google Adsense because they will be able to provide a more accurate response about the structure of the code. For example, our Google Adsense is opening in new window without other modification.

If you want to have others ads you have to add the target="_blank" attribute to the anchor tag container of the ad you want to open in a new window, just like this attributes are added to the image banner div’s from, like so:

<div class="td-visible-desktop">
<a href="#"><img  width="728" height="90" src="" /></a>
</div>

<div class="td-visible-tablet-l">
<a href="#"><img width="468" height="60"  src="" /></a>
</div>

<div class="td-visible-tablet-tp">
<a href="#"><img width="468" height="60"  src="" /></a>
</div>

<div class="td-visible-phone">
<a href="#"><img width="300" height="250"  src="" /></a>
</div>

Here is an example of how this should look:

Example:

<div class="td-visible-desktop"> 
   <a href="http://google.com" target="_blank">
      <img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-728.jpg">
   </a>
</div>
<div class="td-visible-tablet-l"> 
   <a href="http://google.com" target="_blank">
      <img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-468.jpg">
   </a>
</div>
<div class="td-visible-tablet-tp">
   <a href="http://google.com" target="_blank">
      <img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-468.jpg">
   </a>
</div>
<div class="td-visible-phone"> 
   <a href="http://google.com" target="_blank">
      <img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-300.jpg">
   </a>
</div>

Hope this helps and let us know how it goes!

Thank you for the message!

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