中心对齐wordpress上的adsense

时间:2012-02-25 18:15:16

标签: wordpress adsense

我的wordpress上有一个Google AdSense元素,但默认情况下它是左对齐的。如何使其在水平轴上居中对齐?

我尝试的代码是:

<div style="margin:auto">  
    //AdSende Script
</div>

BR

5 个答案:

答案 0 :(得分:6)

在中心标记..或表

下添加adsense代码
<center>Adsense code here</center>

或 添加表

<table width="100%">
  <tr>
    <td align="center">Adsense code here</td>
  </tr>
</table>

答案 1 :(得分:3)

如果您尝试以下内容会怎样:

<div class="textwidget">
  <div class="adsense">  
    //AdSense Script
 </div> <!-- .adsense !-->
</div> <!-- .textwidget !-->

在你的CSS中:

.textwidget {text-align: center;}
.adsense {margin:0 auto;}

答案 2 :(得分:0)

如果您使用的是Internet Explorer,请确保您的DOCTYPE设置正确,否则它将输入quirksmode并中断margin:auto功能。

答案 3 :(得分:0)

尝试这个简单的代码:

 <div style="float:none;margin:0px 0 0px 0;text-align:center;">
        ****your code here ****
 </div>

答案 4 :(得分:0)

这对我有用。经过测试! 保证金自动很好,但需要一定的宽度才能工作。所以:

<div style="max-width:400px;margin:auto">adsense code here</div>

注意:根据需要调整宽度。

我成功地将adsense广告定位在了这样的位置。