Wednesday, April 27, 2016

Meet AdSense’s next generation ads: Page-level ads

Today, we're excited to introduce AdSense's next generation ads.
Page-level ads is a family of ad formats that offer a new and innovative
way to help you earn money from your mobile content.
Read here
Thanks for reading. Until next time.

Posted by Matthew Conroy,
AdSense Product Manager

--
--
Unable to view the links or images in the message above? Want to comment on this post? Visit http://adsense.blogspot.com/ .
 
You received this message because you are subscribed to the Google Groups "Inside AdSense" group.
To unsubscribe from this group, send email to Inside-AdSense+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/Inside-AdSense

---
You received this message because you are subscribed to the Google Groups "Inside AdSense" group.
To unsubscribe from this group and stop receiving emails from it, send an email to inside-adsense+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Tuesday, April 26, 2016

Digest for adsense-api@googlegroups.com - 1 update in 1 topic

info@adspirit.de: Apr 25 06:11AM -0700

Hello,
 
im starting the account association and redirect the user to the approval
page. Once an adsense account is associated with our account the user is
send back to our server with the token as parameter (the token will then be
given to adsensehostapi->associationsessions->verify in order to get more
data). Where can i find/change the url to which the user is sent to?
 
It's not in our code and i can not find the url in our adsense api console
 
Best,
Jan
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page.
To unsubscribe from this group and stop receiving emails from it send an email to adsense-api+unsubscribe@googlegroups.com.

Wednesday, April 20, 2016

Get your free copy of the AdSense Guide to Audience Engagement

In a world where people are making split decisions about what to consume,
it's increasingly challenging but critical for publishers to figure out how to
effectively engage their audiences on their sites. To help lay the foundation
to a winning engagement strategy, we've created the AdSense Guide to
Audience Engagement. 
Read here
Thanks for reading. Until next time.

Posted by: Jay Castro, AdSense Content Marketing

--
--
Unable to view the links or images in the message above? Want to comment on this post? Visit http://adsense.blogspot.com/ .
 
You received this message because you are subscribed to the Google Groups "Inside AdSense" group.
To unsubscribe from this group, send email to Inside-AdSense+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/Inside-AdSense

---
You received this message because you are subscribed to the Google Groups "Inside AdSense" group.
To unsubscribe from this group and stop receiving emails from it, send an email to inside-adsense+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Monday, April 11, 2016

AdSense product update: New language support


We're happy to announce that from today AdSense supports content
in Filipino, a language spoken by millions in the Philippines and around
the world. 
Read here
Stay tuned for our next one

Posted by: Emanuele Brandi, AdSense Internationalization

--
--
Unable to view the links or images in the message above? Want to comment on this post? Visit http://adsense.blogspot.com/ .
 
You received this message because you are subscribed to the Google Groups "Inside AdSense" group.
To unsubscribe from this group, send email to Inside-AdSense+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/Inside-AdSense

---
You received this message because you are subscribed to the Google Groups "Inside AdSense" group.
To unsubscribe from this group and stop receiving emails from it, send an email to inside-adsense+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Sunday, April 3, 2016

[WD&D] Digest for sitedesign@googlegroups.com - 3 updates in 1 topic

Artist <SitePro@gmail.com>: Apr 02 04:17PM -0700

I am playing with responsive image rollovers and there are so many
different ways to do it that it is getting irritating trying to find one
that works, simply.
 
Why doesn't this work?:
 
/* CSS CODE */
 
.headerGFX {
width: 100%;
height: auto;
background-color:#71bc6d;
margin: auto;
padding: none;
}
.headLogo {
width: 100%;
background-image:
url(http://violinteachersiouxfalls.com/images/logo-a_marias_violin_and_vi.png);
display: block;
background-size: contain
}
.headLogo hover{
background-image:
url(http://violinteachersiouxfalls.com/images/logo-b_marias_violin_and_vi.png);
}
 
 
<!-- HTML CODE: -->
 
<div class="headerGFX">
<a class="headLogo" href="/" title="Maria's Violin &amp; Viola Lessons
Home Page"></a>
</div>
 
I have seen this done many times, what am I tripping up over? I mean, My
background color isn't even showing up.
 
The images are 1920 pixels x 200 pixels, both, meant to have a little extra
cushion underneath (just trying to get it going and see what it looks like
to get started), supposed to be page wide (within the restrictions of the
wrapper for padding, but conform to smartphone, tablet and computer
screens).
 
Can I not use an image background on an anchor anymore if I am using
responsive design methodology? Maybe I should try a div inside the anchor?
 
Thanks! -Doug
Artist <SitePro@gmail.com>: Apr 02 05:15PM -0700

OK, I'm almost there, but I'm not getting rid of the src image...
 
/* CSS CODE */
 
.headerContainer {
width: 100%;
height: auto;
padding-top: 40px;
background-color: #71bc6d;
}
.headerGFX {
margin: auto;
display: hidden;
}
.headLogo {
width: 100%;
display: block;
}
.headerGFX:hover {
background-image:
url(http://violinteachersiouxfalls.com/images/logo-b_marias_violin_and_vi.png);
background-size: contain;
display: block;
}
.headLogo:hover {
display: hidden;
}
 
 
<!-- Rollover HTML -->
 
<div class="headerContainer">
<div class="headerGFX">
<a class="headLogo" href="/" title="Maria's Violin &amp; Viola Lessons
Home Page"><img class="headLogo"
src="http://violinteachersiouxfalls.com/images/logo-a_marias_violin_and_vi.png"
alt="Maria's Violin &amp; Viola Lessons Header Logo"></a>
</div>
</div>
 
When I hover over the image, I see the underlying background appear, but
the original message never goes away. Hmmmm...
 
If anyone has any ideas on what I'm doing that's so off, please inform me
of where I am tripping over my own code. Thanks! -DP
Artist <SitePro@gmail.com>: Apr 02 08:43PM -0700

Argh...
 
Stupid me...
 
opacity: 0;
 
Not
 
display: hidden;
 
I think it will work, now. ;)
 
Sorry I bothered y'all!
 
Keep Codin'! -Doug
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page.
To unsubscribe from this group and stop receiving emails from it send an email to sitedesign+unsubscribe@googlegroups.com.