1

我在徽标旁边有我想要的这个 google adsense 代码,但我如何使它更向右?

<div class="pad group">     
                <?php echo wpb_site_name(); ?>
                        <div >
            <script type="text/javascript"><!--
google_ad_client = "ca-pub-7548335119849446";
/* Techs Leaderboard */
google_ad_slot = "9543222930";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>       </div>
            </div>

该网站是http://techsdiary.com/如果您发现它与徽标的间隙不一致

谢谢

4

1 回答 1

2

只需将 HTML 更改为:

<ins style="display:inline-table;border:none;height:90px;margin:0;padding:0;position:relative;visibility:visible;width:728px;float: right;">

添加float:right.. 或者,您也可以将其添加到样式表中:

ins {
    float: right;
}

作为旁注,为什么 iframe 中的 iframe 中有 iframe ..?

结果:

在此处输入图像描述

于 2013-09-26T23:33:23.763 回答