将 Google DFP 广告单元标题 ("Advertisement") 添加到所有具有白色背景和填充的广告

Add Google DFP ad unit heading ("Advertisement") to all the ads with a white background and a padding

我们的网站上有 Google 个 DFP 广告单元,我们需要为所有广告添加“广告”文本标题和带有填充的白色背景。设计应该是这样的。

有人可以帮我实现上述目标吗?

为此,我将使用 css。假设您所有的广告位都有 class "adstyle" :

<div id="banner" class="adstyle">
here is where the GAM iframe will be inserted
</div>

<style>
.adstyle {
  width:auto;
  background: #fff;
  padding:20px;
  position:relative;
 }

.adstyle:before {
  content : '- ADVERTISEMENT -';
  display : block;
  witdh: 100%;
  height: 30px;
  font-weigt:14px;
  text-align : center;
  margin : 0 0 20px 0;
}
</style>