phone call banners

Posted in: Newspaper
Post count: 226

Hi guys,
I would like to know how can I add a banner as a custom add. Instead of the banner pointing to a link I would like it to be one of these custom links that open a phone number in mobile. is this possible?

Thanks in advance!

Post count: 7909

Hi,

For non-adsense code we recommend these div containers – https://forum.tagdiv.com/article-ads/ and just add the image the link url:

<div class="td-visible-desktop">
    <a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>
<div class="td-visible-tablet-landscape">
    <a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>
<div class="td-visible-tablet-portrait">
    <a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>
<div class="td-visible-phone">
    <a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>

Thanks!

Post count: 226

href=”callto:”> can this attribute be added there?

how will be the appropriate way? I would like it to be a Click to call thingy.

Thanks in advance!

S

Post count: 7909

Hi,

You can try to add it like this – http://webdev-il.blogspot.ro/2011/03/how-to-make-html-link-to-call-phone.html and use it in the phone container(if you want this only on mobile device):

<div class="td-visible-phone">
    <a href="tel:5551234567"><img src="http://link to your image" alt="" /></a>
</div>

Thanks!

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