Custom Ad in header

Posted in: Newspaper
Post count: 3

Hi, I do not want to use the Ad feature on the theme panel because we do not currently use adsense. We would like to be able to post event notices in the header space using code. I would like the position the same as the header ad is placed. Any help is much appreciated for this non coder. URL: http://wg206.org – Thanks

Post count: 6600

Hi,

If the “events notices” are represented of an image you can simply use the ad boxes from theme panel and place there the image, like this:

<div class="td-visible-desktop">
    desktop ad code
</div>
<div class="td-visible-tablet-l">
    tablet landscape ad code
</div>
<div class="td-visible-tablet-tp">
    tablet portrait ad code
</div>
<div class="td-visible-phone">
    phones ad code
</div>

Place your image in the div tags, like this:

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>

Note:
Instead of http:google.com add the link to the desired location.

You can read more about this here.
If you want different type of content there you can managed, depending of the header style you use, from here: http://screencast.com/t/0TEZo1Uhn
Hope this helps!

Thanks

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